ChainOfCommand
ChainOfCommand copied to clipboard
Sublime text plugin to run a chain of commands
Hello! Thanks for the great package. Given the following: ``` { "keys": ["ctrl+shift+up"], "command": "chain", "args": { "commands": [ ["swap_line_up"], ["reindent", {"single_line": true}] ], }, }, { "keys": ["ctrl+shift+down"], "command":...
I am trying to set a shortcut key which performs two tasks: close the current file in current panel and move the cursor to first panel,i'have written following code in...
In `Default (Windows).sublime-mousemap`: ```json `{ "button": "button1", "count": 1, "command": "chain", "args": { "press_commands": [ [ "drag_select", ], [ "hide_overlay", ], ], }, },` ``` I tried the above with`...
Since "Chain of Command" overlaps in functionality with `run_macro_file`, I occasionally find myself converting macros to "chain" hotkeys. You can't just copy-paste the macro commands into the "command" argument because...
Hello! I've installed the both of ChainOfCommand and [Golang build](https://packagecontrol.io/packages/Golang%20Build). I'd like to save and build a file by one hotkey. To build a file, I use this: ``` {...
I was trying to prevent the arrow keys from being used to navigate the auto-completion menu. When I press the down arrow it should close the auto-complete menu and move...
Hey! Thanks for your plugin, it's really useful. But, I thought about something that could be improved. If the command is a string instead of a list, it consider that...
I am trying to implement this and if I do it then it works fine which centers the definition at the top of the current buffer window. But if I...