]> git.eshelyaron.com Git - emacs.git/commitdiff
Modify LLDB command xcomplete to return a Lisp list
authorGerd Möllmann <gerd@gnu.org>
Tue, 17 Oct 2023 15:23:33 +0000 (17:23 +0200)
committerGerd Möllmann <gerd@gnu.org>
Tue, 17 Oct 2023 15:25:56 +0000 (17:25 +0200)
* etc/emacs_lldb.py (xcomplete): Return a Lisp list. Add a comment
explaining the return value.

etc/emacs_lldb.py

index a4f066b79decb8e92b8cb7f9a0c6b7880d57d369..f2c7a7987c73e2d4401e17ec0ab473090994ab33 100644 (file)
@@ -203,14 +203,34 @@ def xdebug_print(debugger, command, result, internal_dict):
     """Print Lisp_Objects using safe_debug_print()"""
     debugger.HandleCommand(f"expr safe_debug_print({command})")
 
+# According to SBCommanInterpreter.cpp, the return value of
+# HandleCompletions is as follows:
+#
+# Index 1 to the end contain all the completions.
+#
+# At index 0:
+#
+# If all completions have a common prefix, this is the shortest
+# completion, with the common prefix removed from it.
+#
+# If it is the completion for a whole word, a space is added at the
+# end.
+#
+# So, the prefix is what could be added to make the command partially
+# complete.
+#
+# If there is no common prefix, index 0 has an empty string "".
+
 def xcomplete(debugger, command, result, internal_dict):
     """Print completions for COMMAND."""
     interpreter = debugger.GetCommandInterpreter()
     string_list = lldb.SBStringList()
     interpreter.HandleCompletion(command, len(command), len(command),
                                  -1, string_list)
+    list = ""
     for i in range(string_list.GetSize()):
-        result.AppendMessage(string_list.GetStringAtIndex(i))
+        list += '"' + string_list.GetStringAtIndex(i) + '" '
+    result.AppendMessage("(" + list + ")")
 
 \f
 ########################################################################