Function: projectile-symbol-or-selection-at-point

projectile-symbol-or-selection-at-point is a byte-compiled function defined in projectile.el.

Signature

(projectile-symbol-or-selection-at-point)

Documentation

Get the symbol or selected text at point.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-symbol-or-selection-at-point ()
  "Get the symbol or selected text at point."
  (if (use-region-p)
      (buffer-substring-no-properties (region-beginning) (region-end))
    (projectile-symbol-at-point)))