Skip to content

Commit f8b203f

Browse files
committed
Fix dedenting during typing of Hostname
1 parent 6bcf5c3 commit f8b203f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

support/Indentation Rules SSH Config.tmPreferences

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<key>settings</key>
99
<dict>
1010
<key>decreaseIndentPattern</key>
11-
<string>^\s*(?i:Host|Match)(\s|$)</string>
11+
<string>^\s*(?i:Host|Match)(?=[ \t])</string>
1212
<key>increaseIndentPattern</key>
13-
<string>^\s*(?i:Host|Match)(\s|$)</string>
13+
<string>^\s*(?i:Host|Match)(?=[ \t])</string>
1414
<key>unIndentedLinePattern</key>
1515
<string>^\s*([#;].*)?$</string>
1616
</dict>

support/Indentation Rules SSHD Config.tmPreferences

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<key>settings</key>
99
<dict>
1010
<key>decreaseIndentPattern</key>
11-
<string>^\s*(?i:Match)(\s|$)</string>
11+
<string>^\s*(?i:Match)(?=[ \t])</string>
1212
<key>increaseIndentPattern</key>
13-
<string>^\s*(?i:Match)(\s|$)</string>
13+
<string>^\s*(?i:Match)(?=[ \t])</string>
1414
<key>unIndentedLinePattern</key>
1515
<string>^\s*([#;].*)?$</string>
1616
</dict>

0 commit comments

Comments
 (0)