[Lldb-commits] [PATCH] D68909: change shortcut for 'step out' from 'o' to 'f'

Luboš Luňák via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 29 12:40:31 PDT 2020


llunak updated this revision to Diff 281707.
llunak added a comment.

Updated for current git.


Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68909/new/

https://reviews.llvm.org/D68909

Files:
  lldb/source/Core/IOHandlerCursesGUI.cpp


Index: lldb/source/Core/IOHandlerCursesGUI.cpp
===================================================================
--- lldb/source/Core/IOHandlerCursesGUI.cpp
+++ lldb/source/Core/IOHandlerCursesGUI.cpp
@@ -3240,7 +3240,7 @@
         {'h', "Show help dialog"},
         {'n', "Step over (source line)"},
         {'N', "Step over (single instruction)"},
-        {'o', "Step out"},
+        {'f', "Step out (finish)"},
         {'s', "Step in (source line)"},
         {'S', "Step in (single instruction)"},
         {',', "Page up"},
@@ -3818,8 +3818,8 @@
       }
       return eKeyHandled;
 
-    case 'o':
-      // 'o' == step out
+    case 'f':
+      // 'f' == step out (finish)
       {
         ExecutionContext exe_ctx =
             m_debugger.GetCommandInterpreter().GetExecutionContext();


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68909.281707.patch
Type: text/x-patch
Size: 802 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200729/b0845a89/attachment.bin>


More information about the lldb-commits mailing list