KeybindingHelper
A Sublime Text package to simplify the creation and look-up of key-bindings
Details
Installs
- Total 5K
- Win 3K
- Mac 1K
- Linux 828
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Keybinding Helper
A plugin with the purpose to show keybindings and simplify the creation of new keybindings.
New in version 2.1.0:
- support of the Suricate package
- support of pasting into python
run_command
calls
Command Assistant (ST3 only)
The command assistant shows the executed commands in an output panel and adds a [COPY]
-button to copy the command. Afterwards it can be pasted into a keymap via Paste keybindings to create a keybinding. Press alt+`
or ctrl+shift+p
and write KeybindingHelper: Show Command Assistant
to show the Command Assistant. If you click on [COPY]
it will copy the command in your clipboard. Afterwards you can paste it via ctrl+v
into a keymap to create a keybinding. Use the [CLOSE]
-button or press escape
to close the panel.
Show used keybindings
Use ctrl+alt+`
(KeybindingHelper: Toggle show commands) to show the used commands (keybindings) and ctrl+alt+shift+`
(KeybindingHelper: Toggle show inputs) to show the keys (key events). This will just open the console and call sublime.log_commands
or sublime.log_input
.
Copy a line from the console (Hint: Click on the line above) and paste it into a keymap to create a keybinding.
Paste keybindings
Because the keybinding is bound to a scope, it requires the PackageDev package to be installed.
Select and copy a command from the console and paste it into a keymap.
E.g. you could select command: paste_keybinding
and paste it into a keymap. This will create a snippet, which transforms it into a valid keybinding and will insert the following:
{
"keys": ["ctrl+alt+shift+a"],
"command": "paste_keybinding",|
},
This does also work if you write a TextCommand
plugin and copy the name, e.g. PasteKeybindingCommand
. If it ends with Command
it will automatically converted into a keybinding.
This does also work in profile files of the Suricate package or paste inside a python run_command
call.