Skip to content

Instantly share code, notes, and snippets.

@iofjuupasli
Created January 16, 2015 13:00
Show Gist options
  • Save iofjuupasli/080a53b2bfdcf65860bb to your computer and use it in GitHub Desktop.
Save iofjuupasli/080a53b2bfdcf65860bb to your computer and use it in GitHub Desktop.
sublime text double comma\semicolon to end of string
[
{
"args":
{
"to": "eol"
},
"command": "move_to"
},
{
"args":
{
"characters": ","
},
"command": "insert"
}
]
[
{
"args":
{
"to": "eol"
},
"command": "move_to"
},
{
"args":
{
"characters": ";"
},
"command": "insert"
}
]
[
{ "keys": [";", ";"], "command": "run_macro_file", "args": {"file": "Packages/User/double-semicolon.sublime-macro"}},
{ "keys": [",", ","], "command": "run_macro_file", "args": {"file": "Packages/User/double-comma.sublime-macro"}}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment