plugin/threesomelib/util/keys.py @ 2da3dbb27a42

Todos.
author Steve Losh <steve@stevelosh.com>
date Mon, 13 Jun 2011 21:47:27 -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))