-
Notifications
You must be signed in to change notification settings - Fork 56
Tips
We need your tips. Your code snippets prevent others from reinventing of the wheel. You can edit this page if you have account of GitHub.
- Link to the gist
- Link to your entries of tips
- etc.
Let us share the commands, tips and snippets for keysnail.
A work in progress (and feedback is welcome), includes bash-style readline navigation/editing for input fields.
To view full list of keyboard shortcuts, press C-k k
Increment / Decrement the number in URL
Death to access key!
C-x 2, C-x 3, C-x 0, … Emacs.
Display and recover recently closed tabs
Display and select session histories
Search with suggest.
KeySnail has the potential to become the filer.
Install the K2Emacs plugin from the plugin page
Add the following to the PRESERVE area in ~/.keysnail.js :
key.setEditKey ('C-i', function (ev, arg) { ext.exec ( "edit_text", arg, ev); }, "Edit in external editor", true);
plugins.options [ "K2Emacs.editor" ] = "/usr/bin/gvim -f";
The original command.recenter() does not work (at least in my environment — Mac OS X leopard, firefox 3.6.10, KeySnail 1.6.9), because document.getBoxObjectFor is obsolete.
This is fixed and a little advanced version of command.recenter()
This function enables to search next by C-s and stop searching by Enter
search like Emacs