Variable: gud-lldb-max-completions

gud-lldb-max-completions is a customizable variable defined in gud.el.gz.

Value

20

Documentation

Maximum number of completions to request from LLDB.

This variable was added, or its default value changed, in Emacs 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
;; According to SBCommandInterpreter.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 "".

(defcustom gud-lldb-max-completions 20
  "Maximum number of completions to request from LLDB."
  :type 'integer
  :version "30.1")