Function: gud-lldb-completion-at-point

gud-lldb-completion-at-point is a byte-compiled function defined in gud.el.gz.

Signature

(gud-lldb-completion-at-point)

Documentation

Return the data to complete the LLDB command before point.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-lldb-completion-at-point ()
  "Return the data to complete the LLDB command before point."
  (let* ((end (point))
         (line-start (comint-line-beginning-position))
         (start (save-excursion
                  (skip-chars-backward "^ " line-start)
                  (point)))
         (context (buffer-substring line-start start)))
    (list (copy-marker start t)
          end
          (completion-table-dynamic
           (apply-partially #'gud-lldb-completions context)))))