AutoIt / SublimeAutoItScript

AutoItScript Au3 language package for SublimeText including syntax highlighting, comments toggling, auto-completions, build systems for run and compile, Tidy command, IncludeHelper command.
https://www.autoitscript.com/forum/forum/7-autoit-technical-discussion/
MIT License
29 stars 11 forks source link

Keybinding's change #8

Closed Torrent007 closed 10 years ago

Torrent007 commented 10 years ago

Hy ;)

Just a question : How can i change the keybinding for this plugin ? :) Thx for answer ;)

FichteFoll commented 10 years ago
Ctrl+B will run the current file (with AutoIt3.exe)
Ctrl+Shift+B will compile the current file (with Aut2Exe.exe)

These bindings are the default in Sublime Text, you can add your own bindings by adding them to the User keybindings file

Alt+TT will invoke Tidy on the current file (with Tidy.exe).
Alt+TI will invoke IncludeHelper on the current file.

These are accelerators and first open the main menu to allow you to select a menu item with the second key press. All menu items are bound to commands, so you can bind them the same way as above but with an adjusted command name.

You can find the commands for the menu items in Main.sublime-menu and documenation on keybindings here.