Home | History | Annotate | Download | only in plugin

Lines Matching full:vim

2 " Vim script glue code for LLDB integration
6 let searchstr = "python-vim-lldb"
17 call confirm('ERROR: This Vim installation does not have python support. lldb.vim will not work.')
39 " The LLDB CommandInterpreter provides tab-completion in Vim's command mode.
53 " Regexp-commands: because vim's command mode does not support '_' or '-'
85 command -complete=custom,s:CompleteCommand -nargs=* Lprint python ctrl.doCommand('print', vim.eval("s:CursorWord('<args>')"))
86 command -complete=custom,s:CompleteCommand -nargs=* Lpo python ctrl.doCommand('po', vim.eval("s:CursorWord('<args>')"))
87 command -complete=custom,s:CompleteCommand -nargs=* LpO python ctrl.doCommand('po', vim.eval("s:CursorWORD('<args>')"))
112 " would have to be designed carefully because Vim's APIs are non threadsafe;
113 " use of the vim module **MUST** be restricted to the main thread.
124 a = vim.eval("a:A")
125 l = vim.eval("a:L")
126 p = vim.eval("a:P")
133 a = vim.eval("a:A")
134 l = vim.eval("a:L")
135 p = vim.eval("a:P")