diff options
| author | Daniel Malea <daniel.malea@intel.com> | 2013-05-22 16:05:55 +0000 |
|---|---|---|
| committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-22 16:05:55 +0000 |
| commit | 2e88c6b6618cba88f6627801640223b3b9845143 (patch) | |
| tree | be41697b18804f1311e2f60e1144602a8527dfa2 /lldb/utils/vim-lldb/plugin | |
| parent | a7c86e1553be21cec9723156cec806a0743b8845 (diff) | |
| download | bcm5719-llvm-2e88c6b6618cba88f6627801640223b3b9845143.tar.gz bcm5719-llvm-2e88c6b6618cba88f6627801640223b3b9845143.zip | |
LLDB Vim plugin usability improvement: ":Lshow" now displays all panes
- no longer requires a pane name argument
Patch by Arthur Evstifeev
llvm-svn: 182484
Diffstat (limited to 'lldb/utils/vim-lldb/plugin')
| -rw-r--r-- | lldb/utils/vim-lldb/plugin/lldb.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/utils/vim-lldb/plugin/lldb.vim b/lldb/utils/vim-lldb/plugin/lldb.vim index 8121a73d025..e4a248c1fd9 100644 --- a/lldb/utils/vim-lldb/plugin/lldb.vim +++ b/lldb/utils/vim-lldb/plugin/lldb.vim @@ -42,7 +42,7 @@ function! s:InitLldbPlugin() " Window show/hide commands command -complete=custom,s:CompleteWindow -nargs=1 Lhide python ctrl.doHide('<args>') - command -complete=custom,s:CompleteWindow -nargs=1 Lshow python ctrl.doShow('<args>') + command -complete=custom,s:CompleteWindow -nargs=0 Lshow python ctrl.doShow('<args>') " Launching convenience commands (no autocompletion) command -nargs=* Lstart python ctrl.doLaunch(True, '<args>') |

