[
	{ "keys": ["ctrl+i"], "command": "unbound" },
	{ "keys": ["ctrl+k"], "command": "unbound" },
	{ "keys": ["ctrl+j"], "command": "unbound" },
	{ "keys": ["ctrl+l"], "command": "unbound" },
	
	{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} },
	{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} },
	{ "keys": ["ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false} },
	{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true} },


	{ "keys": ["ctrl+alt+i"], "command": "soft_undo" },
	{ "keys": ["ctrl+alt+k"], "command": "slurp_find_string" },
	{ "keys": ["ctrl+alt+j"], "command": "new_file" },
	{ "keys": ["ctrl+alt+l"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} },


	{ "keys": ["shift+ctrl+l"], "command": "unbound" },
	{ "keys": ["shift+ctrl+j"], "command": "unbound" },
	{ "keys": ["shift+ctrl+i"], "command": "unbound"  },
	{ "keys": ["shift+ctrl+k"], "command": "unbound"  },

	{ "keys": ["shift+ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false, "extend": true} },
	{ "keys": ["shift+ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true, "extend": true} },
	{ "keys": ["shift+ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} },
	{ "keys": ["shift+ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} },


	{ "keys": ["ctrl+e"], "command": "unbound"  },
	{ "keys": ["ctrl+;"], "command": "unbound" },
	{ "keys": ["ctrl+h"], "command": "unbound" },

	{ "keys": ["ctrl+e"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
	{ "keys": ["ctrl+h"], "command": "move_to", "args": {"to": "bol", "extend": false} },
	{ "keys": ["ctrl+;"], "command": "move_to", "args": {"to": "eol", "extend": false} },


	{ "keys": ["ctrl+alt+o"], "command": "unbound" },
	{ "keys": ["ctrl+alt+o"], "command": "prompt_open_file" },

	
	{ "keys": ["alt+tab"], "command": "auto_complete" },
	{ "keys": ["alt+tab"], "command": "replace_completion_with_auto_complete", "context":
		[
			{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
			{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
			{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
		]
	},

	
	{ "keys": ["ctrl+shift+h"], "command": "unbound" },
	{ "keys": ["ctrl+shift+;"], "command": "unbound" },

	{ "keys": ["ctrl+shift+h"], "command": "move_to", "args": {"to": "bol", "extend": true} },
	{ "keys": ["ctrl+shift+;"], "command": "move_to", "args": {"to": "eol", "extend": true} },


	{ "keys": ["ctrl+r"], "command": "unbound" },
	{ "keys": ["ctrl+r"], "command": "insert_best_completion", "args": {"default": "	", "exact": false}},


]
