Skip to content

Commit

Permalink
Merge pull request #411 from SublimeText-Markdown/2.2.2
Browse files Browse the repository at this point in the history
v2.2.2
  • Loading branch information
felixhao28 authored May 5, 2017
2 parents 5fdeaba + cdebd05 commit 4782f75
Show file tree
Hide file tree
Showing 10 changed files with 931 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Here are the used scopes under 3 different markdown flavors. If you are not sure

### ScopeName: text.html.markdown.multimarkdown

* <All scopes under text.html.markdown.gfm>
* &lt;All scopes under text.html.markdown.gfm&gt;
* __keyword.other.multimarkdown__
* __punctuation.separator.key-value.multimarkdown__
* __meta.header.multimarkdown__
Expand Down
2 changes: 2 additions & 0 deletions Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -597,13 +597,15 @@
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "following_text", "operator": "not_regex_match", "operand": "^$", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
},
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.list", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
Expand Down
2 changes: 2 additions & 0 deletions Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -602,13 +602,15 @@
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "following_text", "operator": "not_regex_match", "operand": "^$", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
},
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.list", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
Expand Down
2 changes: 2 additions & 0 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -597,13 +597,15 @@
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "following_text", "operator": "not_regex_match", "operand": "^$", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
},
{ "keys": ["shift+tab"], "command": "fold_section", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "^\\s+", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.list", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
Expand Down
4 changes: 2 additions & 2 deletions Markdown.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@
"md030": {
"ul_single": 1,
"ol_single": 1,
// optinally, 3
// optionally, 3
"ul_multi": 1,
// optionaly, 2
// optionally, 2
"ol_multi": 1
}
}
Expand Down
Loading

0 comments on commit 4782f75

Please sign in to comment.