Add "v" as well as "var" as an alias for "frame var".
authorJim Ingham <jingham@apple.com>
Fri, 12 Oct 2018 18:46:02 +0000 (18:46 +0000)
committerJim Ingham <jingham@apple.com>
Fri, 12 Oct 2018 18:46:02 +0000 (18:46 +0000)
<rdar://problem/40066460>

llvm-svn: 344397

lldb/source/Interpreter/CommandInterpreter.cpp

index d5dd32b..0d6a7b7 100644 (file)
@@ -426,6 +426,7 @@ void CommandInterpreter::Initialize() {
 
   cmd_obj_sp = GetCommandSPExact("frame variable", false);
   if (cmd_obj_sp) {
+    AddAlias("v", cmd_obj_sp);
     AddAlias("var", cmd_obj_sp);
     AddAlias("vo", cmd_obj_sp, "--object-description");
   }