Variable: klink:ignore-modes

klink:ignore-modes is a customizable variable defined in klink.el.

Value

(amoccur-mode bash-ts-mode moccur-mode occur-mode shell-mode ssh-mode
	      telnet-mode term-mode)

Documentation

Major modes in which to ignore potential klinks to avoid false positives.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/klink.el
(require 'hbut)       ;; For `defib'

;;; ************************************************************************
;;; Public variables
;;; ************************************************************************

(defcustom klink:ignore-modes
  '(amoccur-mode bash-ts-mode moccur-mode occur-mode shell-mode ssh-mode
                 telnet-mode term-mode)
  "Major modes in which to ignore potential klinks to avoid false positives."
  :type '(list function)
  :group 'hyperbole-koutliner)