You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if you put the word "if" in a comment with the Shell Script grammar active, TextMate will erroneously put a code folding start mark at that comment. This has an easy fix which I think is correct and doesn't seem to have any nasty side-effects.
Currently, if you put the word "if" in a comment with the Shell Script grammar active, TextMate will erroneously put a code folding start mark at that comment. This has an easy fix which I think is correct and doesn't seem to have any nasty side-effects.
Current Settings -> Folding:
{ foldingStartMarker = '\b(if|case)\b|(\{|\b(do)\b)$';
foldingStopMarker = '^\s*(\}|(done|fi|esac)\b)';
}
Proposed Settings-> Folding:
{ foldingStartMarker = '^\s*\b(if|case)\b|(\{|\b(do)\b)$';
foldingStopMarker = '^\s*(\}|(done|fi|esac)\b)';
}
The text was updated successfully, but these errors were encountered: