Home | History | Annotate | Download | only in python-vim-lldb

Lines Matching full:vim

2 # LLDB UI state in the Vim user interface.
6 import vim
50 for w in vim.windows:
90 vim.command(":vsp")
105 if buf != vim.current.buffer:
106 # Vim has an open buffer to the required file: select it
107 vim.command('execute ":%db"' % buf.number)
108 elif is_selected and vim.current.buffer.name not in fname and os.path.exists(fname) and goto_file:
109 # FIXME: If current buffer is modified, vim will complain when we try to switch away.
111 vim.command('execute ":e %s"' % fname)
112 buf = vim.current.buffer
123 curname = vim.current.buffer.name
127 print "FIXME: not sure where to move cursor because %s != %s " % (vim.current.buffer.name, fname)
189 status to the vim status line. If goto_file is True, the user's