Skip to content

Commit

Permalink
fixe invalid JSON in OSX keymap file - #11
Browse files Browse the repository at this point in the history
  • Loading branch information
jcberquist committed Feb 1, 2016
1 parent c51bb77 commit 3484871
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion keymaps/Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
{"key": "selector", "operator": "equal", "operand": "meta.tag.cfml - comment - source.cfml.script", "match_all":true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true},
{"key": "preceding_text", "operator": "regex_match", "operand": ".*>$", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true}
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions keymaps/Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
{"key": "selection_empty", "operator": "equal", "operand":false, "match_all":true},
{"key": "selector", "operator": "equal", "operand": "string.quoted.double.cfml,string.quoted.single.cfml,meta.scope.cfoutput.cfml", "match_all":true}
]
}
},
// f1 docs lookup
{
"keys": ["f1"],
Expand Down Expand Up @@ -101,7 +101,7 @@
{"key": "selector", "operator": "equal", "operand": "meta.tag.cfml - comment - source.cfml.script", "match_all":true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true},
{"key": "preceding_text", "operator": "regex_match", "operand": ".*>$", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true}
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion keymaps/Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
{"key": "selector", "operator": "equal", "operand": "meta.tag.cfml - comment - source.cfml.script", "match_all":true},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true},
{"key": "preceding_text", "operator": "regex_match", "operand": ".*>$", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true},
{"key": "following_text", "operator": "regex_match", "operand": "^</.*", "match_all":true}
]
},
{
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"0.2.1": "messages/0.2.1.txt",
"0.3.0": "messages/0.3.0.txt",
"0.3.1": "messages/0.3.1.txt",
"0.4.0": "messages/0.4.0.txt"
"0.4.0": "messages/0.4.0.txt",
"0.4.1": "messages/0.4.1.txt"
}
4 changes: 4 additions & 0 deletions messages/0.4.1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CFML v0.4.1 Changelog:

- fix for invalid JSON in OSX keymap file
Sorry!

0 comments on commit 3484871

Please sign in to comment.