howl-editor / howl

The Howl Editor
http://howl.io
Other
712 stars 68 forks source link

Command cheatsheet #394

Open imaia opened 6 years ago

imaia commented 6 years ago

Howl editor could do nicely with a command shortcut cheatsheet. If possible, have it as advised reading right in the main page.

refi64 commented 6 years ago

https://github.com/howl-editor/howl/blob/master/lib/howl/keymap.moon

TBH we should probably just link to this file somewhere...IIRC this has come up before on Gitter.

MarcusE1W commented 6 years ago

As an alternative to a command cheat sheet I also like to use the comand search in the command line. The shortcuts are shown there which helps memorising them.

With this code in moon.init

-- automatically open the command select list together with the command line
howl.bindings.push f2: -> howl.command.run howl.interact.select_command!

You can press F2 (or bind it to any other key) instead of Ctrl-e and immediately search for commands. That's my cheat sheet if you want so.