plugin/threesomelib/util/keys.py @ dadef6acf219

Seriously, Vim?  God damn it.
author Steve Losh <steve@stevelosh.com>
date Mon, 13 Jun 2011 21:53:54 -0400
parents bc6297aefe4b
children (none)
import vim


def bind(key, to, options='', mode=None, leader='<localleader>'):
    vim.command('nnoremap %s %s%s %s' % (options, leader, key, to))

def unbind(key, options='', leader='<localleader>'):
    vim.command('unmap %s %s%s' % (options, leader, key))