plugin/threesomelib/util/windows.py @ b9e75c5a9f2c
v0.0.5
Add boolsetting() and clean up a bit.
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 13 Jun 2011 17:27:42 -0400 |
parents |
bb3247356f22 |
children |
0797e3cc5020 |
import vim
def focus(winnr):
vim.command('%dwincmd w' % winnr)
def close(winnr):
focus(winnr)
vim.command('wincmd c')
def close_all():
for winnr in range(len(vim.windows) - 1):
close(winnr)
def split():
vim.command('wincmd s')
def vsplit():
vim.command('wincmd v')
def currentnr():
return int(vim.eval('winnr()'))