Variable: ffap-next-regexp
ffap-next-regexp is a customizable variable defined in ffap.el.gz.
Value
"[/:.~[:alpha:]]/\\|@[[:alpha:]][-[:alnum:]]*\\."
Documentation
Regular expression governing movements of ffap-next.
Source Code
;; Defined in /usr/src/emacs/lisp/ffap.el.gz
(defcustom ffap-next-regexp
;; If you want ffap-next to find URL's only, try this:
;; (and ffap-url-regexp (string-match "\\\\`" ffap-url-regexp)
;; (concat "\\<" (substring ffap-url-regexp 2))))
;;
;; It pays to put a big fancy regexp here, since ffap-guesser is
;; much more time-consuming than regexp searching:
"[/:.~[:alpha:]]/\\|@[[:alpha:]][-[:alnum:]]*\\."
"Regular expression governing movements of `ffap-next'."
:type 'regexp
:group 'ffap)