autoload/threesomelib/util/keys.py @ e74f19c88d7e
Added tag v0.1.1 for changeset 17831680bc89
| author | Steve Losh <steve@stevelosh.com> | 
|---|---|
| date | Fri, 02 Sep 2011 09:36:27 -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)