From 3447b814c76b98bd4abe54ac627e2118b107dac6 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 26 Aug 2021 21:31:13 -0700 Subject: [PATCH] Add ctrl+shift+n = new view into file. --- voussoir/Default (Windows).sublime-keymap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/voussoir/Default (Windows).sublime-keymap b/voussoir/Default (Windows).sublime-keymap index 26aa741..ef2dd66 100644 --- a/voussoir/Default (Windows).sublime-keymap +++ b/voussoir/Default (Windows).sublime-keymap @@ -2,12 +2,14 @@ { "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}, { "keys": ["ctrl+shift+m"], "command": "toggle_minimap"}, { "keys": ["ctrl+shift+b"], "command": "expand_selection", "args": {"to": "brackets"} }, +{ "keys": ["ctrl+shift+n"], "command": "clone_file" }, { "keys": ["alt+shift+."], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" }}, { "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"}}, { "keys": ["ctrl+shift+space"], "command": "auto_complete" }, { "keys": ["shift+alt+up"], "command": "select_lines", "args": {"forward": false} }, { "keys": ["shift+alt+down"], "command": "select_lines", "args": {"forward": true} }, + { "keys": ["ctrl+shift+enter"], "command": "insert", "args": {"characters": "\n#"},