diff --git a/PowerCursors b/PowerCursors index 99e22aa8..4bfd3895 160000 --- a/PowerCursors +++ b/PowerCursors @@ -1 +1 @@ -Subproject commit 99e22aa8476d6ea602f801d430a81d9a05155578 +Subproject commit 4bfd3895a5292b23b95389cb5394b86d67f932aa diff --git a/README.MD b/README.MD index 07ff4005..7caa15cc 100644 --- a/README.MD +++ b/README.MD @@ -10,7 +10,7 @@ to program on: 5. SQL -Its current version is: v1.0.1-257 +Its current version is: v1.0.1-258 diff --git a/SUBLIME_STUDIO_VERSION.txt b/SUBLIME_STUDIO_VERSION.txt index df7347e1..6b294e7a 100644 --- a/SUBLIME_STUDIO_VERSION.txt +++ b/SUBLIME_STUDIO_VERSION.txt @@ -1 +1 @@ -1.0.1-257 +1.0.1-258 diff --git a/User/Default (Linux).sublime-keymap b/User/Default (Linux).sublime-keymap index 6c349e85..1d3d7997 100644 --- a/User/Default (Linux).sublime-keymap +++ b/User/Default (Linux).sublime-keymap @@ -128,6 +128,7 @@ { "keys": ["ctrl+f9"], "command": "select_lines", "args": {"forward": false} }, { "keys": ["ctrl+f8"], "command": "select_lines", "args": {"forward": true} }, + // Sublime Column Select, https://github.com/ehuss/Sublime-Column-Select { "keys": ["alt+up"], "command": "column_select", "args": {"by": "lines", "forward": false}}, { "keys": ["alt+down"], "command": "column_select", "args": {"by": "lines", "forward": true}}, @@ -136,6 +137,32 @@ { "keys": ["shift+alt+home"], "command": "column_select", "args": {"by": "all", "forward": false}}, { "keys": ["shift+alt+end"], "command": "column_select", "args": {"by": "all", "forward": true}}, + + // Moved to the Custom Settings package: + // https://forum.sublimetext.com/t/how-to-do-the-jump-back-command-from-find-panel/25610 + // + // { "keys": ["alt+left"], "command": "jump_back" }, + // { "keys": ["alt+right"], "command": "jump_forward" }, + + { "keys": ["alt+left"], "command": "my_jump_back" }, + { "keys": ["alt+right"], "command": "my_jump_forward" }, + + + // Add/remove/select of multiple cursors more convenient with keyboard, https://github.com/evandrocoan/PowerCursors + { "keys": ["alt+="] , "command": "power_cursor_add" }, + { "keys": ["alt++"] , "command": "power_cursor_add" }, + { "keys": ["alt+keypad_plus"] , "command": "power_cursor_add" }, + + { "keys": ["alt+-"] , "command": "power_cursor_remove", "context": [ { "key": "in_cursor_transition" } ] }, + { "keys": ["alt+keypad_minus"], "command": "power_cursor_remove", "context": [ { "key": "in_cursor_transition" } ] }, + + { "keys": ["alt+["] , "command": "power_cursor_select" , "args": { "forward": false } }, + { "keys": ["alt+]"] , "command": "power_cursor_select" , "args": { "forward": true } }, + + { "keys": ["alt+a"] , "command": "power_cursor_activate", "context": [ { "key": "in_cursor_transition" } ] }, + { "keys": ["escape"], "command": "power_cursor_exit" , "context": [ { "key": "in_cursor_transition" } ] }, + + { "keys": ["pageup"], "command": "move", "args": {"by": "pages", "forward": false} }, { "keys": ["pagedown"], "command": "move", "args": {"by": "pages", "forward": true} }, { "keys": ["shift+pageup"], "command": "move", "args": {"by": "pages", "forward": false, "extend": true} }, @@ -356,22 +383,6 @@ { "keys": ["ctrl+shift+r"], "command": "goto_symbol_in_project" }, - { "keys": ["alt+keypad_minus"], "command": "jump_back" }, - { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, - - { "keys": ["alt+-"], "command": "jump_back" }, - { "keys": ["alt+shift+-"], "command": "jump_forward" }, - - // Moved to the Custom Settings package: - // https://forum.sublimetext.com/t/how-to-do-the-jump-back-command-from-find-panel/25610 - // - // { "keys": ["alt+left"], "command": "jump_back" }, - // { "keys": ["alt+right"], "command": "jump_forward" }, - - { "keys": ["alt+left"], "command": "my_jump_back" }, - { "keys": ["alt+right"], "command": "my_jump_forward" }, - - { "keys": ["ctrl+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} }, { "keys": ["ctrl+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": true} }, { "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find", "reverse": false} }, diff --git a/User/Default (Windows).sublime-keymap b/User/Default (Windows).sublime-keymap index 6c349e85..1d3d7997 100644 --- a/User/Default (Windows).sublime-keymap +++ b/User/Default (Windows).sublime-keymap @@ -128,6 +128,7 @@ { "keys": ["ctrl+f9"], "command": "select_lines", "args": {"forward": false} }, { "keys": ["ctrl+f8"], "command": "select_lines", "args": {"forward": true} }, + // Sublime Column Select, https://github.com/ehuss/Sublime-Column-Select { "keys": ["alt+up"], "command": "column_select", "args": {"by": "lines", "forward": false}}, { "keys": ["alt+down"], "command": "column_select", "args": {"by": "lines", "forward": true}}, @@ -136,6 +137,32 @@ { "keys": ["shift+alt+home"], "command": "column_select", "args": {"by": "all", "forward": false}}, { "keys": ["shift+alt+end"], "command": "column_select", "args": {"by": "all", "forward": true}}, + + // Moved to the Custom Settings package: + // https://forum.sublimetext.com/t/how-to-do-the-jump-back-command-from-find-panel/25610 + // + // { "keys": ["alt+left"], "command": "jump_back" }, + // { "keys": ["alt+right"], "command": "jump_forward" }, + + { "keys": ["alt+left"], "command": "my_jump_back" }, + { "keys": ["alt+right"], "command": "my_jump_forward" }, + + + // Add/remove/select of multiple cursors more convenient with keyboard, https://github.com/evandrocoan/PowerCursors + { "keys": ["alt+="] , "command": "power_cursor_add" }, + { "keys": ["alt++"] , "command": "power_cursor_add" }, + { "keys": ["alt+keypad_plus"] , "command": "power_cursor_add" }, + + { "keys": ["alt+-"] , "command": "power_cursor_remove", "context": [ { "key": "in_cursor_transition" } ] }, + { "keys": ["alt+keypad_minus"], "command": "power_cursor_remove", "context": [ { "key": "in_cursor_transition" } ] }, + + { "keys": ["alt+["] , "command": "power_cursor_select" , "args": { "forward": false } }, + { "keys": ["alt+]"] , "command": "power_cursor_select" , "args": { "forward": true } }, + + { "keys": ["alt+a"] , "command": "power_cursor_activate", "context": [ { "key": "in_cursor_transition" } ] }, + { "keys": ["escape"], "command": "power_cursor_exit" , "context": [ { "key": "in_cursor_transition" } ] }, + + { "keys": ["pageup"], "command": "move", "args": {"by": "pages", "forward": false} }, { "keys": ["pagedown"], "command": "move", "args": {"by": "pages", "forward": true} }, { "keys": ["shift+pageup"], "command": "move", "args": {"by": "pages", "forward": false, "extend": true} }, @@ -356,22 +383,6 @@ { "keys": ["ctrl+shift+r"], "command": "goto_symbol_in_project" }, - { "keys": ["alt+keypad_minus"], "command": "jump_back" }, - { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, - - { "keys": ["alt+-"], "command": "jump_back" }, - { "keys": ["alt+shift+-"], "command": "jump_forward" }, - - // Moved to the Custom Settings package: - // https://forum.sublimetext.com/t/how-to-do-the-jump-back-command-from-find-panel/25610 - // - // { "keys": ["alt+left"], "command": "jump_back" }, - // { "keys": ["alt+right"], "command": "jump_forward" }, - - { "keys": ["alt+left"], "command": "my_jump_back" }, - { "keys": ["alt+right"], "command": "my_jump_forward" }, - - { "keys": ["ctrl+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} }, { "keys": ["ctrl+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": true} }, { "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },