[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 13:30:58 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG336c7029ef3b: [lldb] change shortcut for 'step out' from 'o' to 'f' (authored by llunak).
Repository:
rG LLVM Github Monorepo
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.281718.patch
Type: text/x-patch
Size: 802 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200729/12ee494a/attachment.bin>
More information about the lldb-commits
mailing list