Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@theVDude
Created October 25, 2014 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theVDude/efb9051093d6c15e53bf to your computer and use it in GitHub Desktop.
Save theVDude/efb9051093d6c15e53bf to your computer and use it in GitHub Desktop.
Vim-like movement for tagpro!
// ==UserScript==
// @name Vi Movement Keys for TagPro
// @namespace gist.github.com/thevdude
// @version 0.1
// @description Use hjkl for movement in tagpro
// @copyright 2014+, pooppants
// @include http://*.koalabeast.com:*
// ==/UserScript==
tagpro.ready(function(){
tagpro.keys.left.push(72);
tagpro.keys.down.push(74);
tagpro.keys.right.push(76);
tagpro.keys.up.push(75);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment