Function: parseclj-lex-get-symbol-at-point

parseclj-lex-get-symbol-at-point is a byte-compiled function defined in parseclj-lex.el.

Signature

(parseclj-lex-get-symbol-at-point POS)

Documentation

Return the symbol at POS as a string.

Source Code

;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-get-symbol-at-point (pos)
  "Return the symbol at POS as a string."
  (while (parseclj-lex-symbol-rest-p (char-after (point)))
    (right-char))
  (buffer-substring-no-properties pos (point)))