SublimeText / PackageDev

Tools to ease the creation of snippets, syntax definitions, etc. for Sublime Text.
MIT License
436 stars 83 forks source link

Add info about `solid` option for `indent_guide_options` #270

Closed jrappen closed 4 years ago

jrappen commented 4 years ago

Make clear that solid can be added:

    // hidden
    "indent_guide_options": [],
    // normal
    "indent_guide_options": ["draw_normal"],
    // active
    "indent_guide_options": ["draw_active"],
    // solid hidden (doesn't make sense to set it this way)
    "indent_guide_options": ["solid"],
    // solid normal
    "indent_guide_options": ["draw_normal", "solid"],
    // solid active
    "indent_guide_options": ["draw_active", "solid"],

compare sublimehq/sublime_text#2126

FichteFoll commented 4 years ago

I think this should be fixed upstream, since the original setting is much more likely to be seen by users than our popup. We would only be covering up this oversight in one specific instance (and our completions).