Created
June 23, 2016 06:47
-
-
Save Schlechtwetterfront/2d44419ab0cc5e2984fb56621c9da78b to your computer and use it in GitHub Desktop.
Revisions
-
Schlechtwetterfront created this gist
Jun 23, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // Delete Backward. // Put this into your user packages folder. Can be found by navigating to Preferences > Browse Packages... in Sublime Text. // Then add something like this to your user Key Bindings. // { "keys": ["alt+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/User/Delete Subword Backward.sublime-macro"} } [ { "args": { "by": "subwords", "extend": true, "forward": false }, "command": "move" }, { "args": null, "command": "left_delete" } ] This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ // Delete Forward. // Put this into your user packages folder. Can be found by navigating to Preferences > Browse Packages... in Sublime Text. // Then add something like this to your user Key Bindings. // { "keys": ["alt+delete"], "command": "run_macro_file", "args": {"file": "res://Packages/User/Delete Subword Forward.sublime-macro"} } [ { "args": { "by": "subword_ends", "extend": true, "forward": true }, "command": "move" }, { "args": null, "command": "left_delete" } ]