autoload/threesomelib/util/keys.py @ 17831680bc89 v0.1.1
Docs.
| author | Steve Losh <steve@stevelosh.com> | 
|---|---|
| date | Fri, 01 Jul 2011 21:04:13 -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)