Function: cape-wrap-inside-string

cape-wrap-inside-string is an autoloaded and byte-compiled function defined in cape.el.

Signature

(cape-wrap-inside-string CAPF)

Documentation

Call CAPF only if inside string.

This function can be used as an advice around an existing Capf.

Source Code

;; Defined in ~/.emacs.d/elpa/cape-20260804.2303/cape.el
;;;###autoload
(defun cape-wrap-inside-string (capf)
  "Call CAPF only if inside string.
This function can be used as an advice around an existing Capf."
  (and (nth 3 (syntax-ppss)) (funcall capf)))