autoload/threesomelib/util/keys.py @ f0cdadaa3be0

Set hidden.  No easy way around this.
author Steve Losh <steve@stevelosh.com>
date Fri, 01 Jul 2011 21:03:21 -0400
parents 61c6ca7b2d8a
children b8aab52392ea
import vim
from bufferlib import buffers


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))

def bind_for_all(key, to, options='', mode=None, leader='<localleader>'):
    with buffers.remain():
        for b in buffers.all:
            b.open()
            bind(key, to, options, mode, leader)

def unbind_for_all(key, options='', leader='<localleader>'):
    with buffers.remain():
        for b in buffers.all:
            b.open()
            unbind(key, options, leader)