diff options
Diffstat (limited to 'lldb/utils/vim-lldb/python-vim-lldb')
-rw-r--r-- | lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py b/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py index acc24b44a49..04e11a5a93e 100644 --- a/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py +++ b/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py @@ -277,6 +277,10 @@ class LLDBController(object): def doShow(self, name): """ handle :Lshow <name> """ + if not name: + self.ui.activate() + return + if self.ui.showWindow(name): self.ui.update(self.target, "", self) |