Skip to content

Instantly share code, notes, and snippets.

@ysheng26
Created August 12, 2018 04:52
Show Gist options
  • Save ysheng26/cb94fe1795f8bd2252d5d5198891a32b to your computer and use it in GitHub Desktop.
Save ysheng26/cb94fe1795f8bd2252d5d5198891a32b to your computer and use it in GitHub Desktop.
[
{ "keys": ["alt+."], "command": "show_panel", "args": {"panel": "find_in_files"} },
{ "keys": ["f4"], "command": "next_result" },
{ "keys": ["f5"], "command": "prev_result" },
{ "keys": ["alt+-"], "command": "jump_back" },
{ "keys": ["alt+="], "command": "jump_forward" },
// vintage settings
// insert mode
// {
// "keys": ["j", "k"], "command": "exit_insert_mode",
// "context":
// [
// { "key": "setting.command_mode", "operand": false },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": ["ctrl+n"],
// "command": "move",
// "args": {"by": "lines", "forward": true},
// "context":
// [
// { "key": "setting.command_mode", "operand": false },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": ["ctrl+p"],
// "command": "move",
// "args": {"by": "lines", "forward": false},
// "context":
// [
// { "key": "setting.command_mode", "operand": false },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": ["ctrl+w"],
// "command": "delete_word",
// "args": { "forward": false },
// "context":
// [
// { "key": "setting.command_mode", "operand": false },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// // normal mode
// {
// "keys": [",", "w"], "command": "save",
// "context":
// [
// { "key": "setting.command_mode", "operand": true },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": [",", "q"], "command": "close",
// "context":
// [
// { "key": "setting.command_mode", "operand": true },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": ["ctrl+o"], "command": "jump_back",
// "context":
// [
// { "key": "setting.command_mode", "operand": true },
// { "key": "setting.is_widget", "operand": false }
// ]
// },
// {
// "keys": ["ctrl+i"], "command": "jump_forward",
// "context":
// [
// { "key": "setting.command_mode", "operand": true },
// { "key": "setting.is_widget", "operand": false }
// ]
// }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment