Skip to content

Commit 799ef9d

Browse files
committed
Merge pull request #8 from gregschlom/master
Fix wrapped text being incorrectly indented.
2 parents 9fc4bbd + 3167a7a commit 799ef9d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Default (Linux).sublime-keymap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] },
3-
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] }
2+
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] },
3+
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] }
44
]

Default (OSX).sublime-keymap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] },
3-
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] }
2+
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] },
3+
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] }
44
]

Default (Windows).sublime-keymap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] },
3-
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "source.Wiki"} ] }
2+
{"keys": ["ctrl+f11"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] },
3+
{"keys": ["ctrl+enter"], "command": "wiki_link", "context": [{"key": "selector", "operator": "equal", "operand": "text.Wiki"} ] }
44
]

Wiki.tmLanguage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
</dict>
7373
</array>
7474
<key>scopeName</key>
75-
<string>source.Wiki</string>
75+
<string>text.Wiki</string>
7676
<key>uuid</key>
7777
<string>14883dd8-b120-4a1e-a4c5-67c5e7815344</string>
7878
</dict>

0 commit comments

Comments
 (0)