Skip to content

Instantly share code, notes, and snippets.

@syobochim
Created February 9, 2014 09:12
Show Gist options
  • Save syobochim/8896477 to your computer and use it in GitHub Desktop.
Save syobochim/8896477 to your computer and use it in GitHub Desktop.
[
{
"keys": ["ctrl+g"],
"command": "exit_insert_mode",
"context":[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
//コマンドパレット呼び出し
{
"keys": [";"],
"command": "show_overlay",
"args": {"overlay": "command_palette"},
"context":[
{ "key": "setting.command_mode"}
]
},
{ "keys": ["g", "t"], "command": "next_view",
"context":
[
{ "key": "setting.is_widget", "operand": false },
{ "key": "setting.command_mode" }
]
},
{ "keys": ["g", "T"], "command": "prev_view",
"context":
[
{ "key": "setting.is_widget", "operand": false },
{ "key": "setting.command_mode" }
]
},
{"keys": ["ctrl+u"], "command": "scroll_lines", "args": {"amount": 20.0}, "context": [{ "key": "setting.command_mode" }]},
{"keys": ["ctrl+d"], "command": "scroll_lines", "args": {"amount": -20.0}, "context": [{"key": "setting.command_mode"}]},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment