Function: hywiki-word-remove-completion-at-point

hywiki-word-remove-completion-at-point is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-word-remove-completion-at-point)

Documentation

Remove HyWiki refs in-buffer completion from completion-at-point-functions.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-remove-completion-at-point ()
  "Remove HyWiki refs in-buffer completion from `completion-at-point-functions'."
  (remove-hook 'completion-at-point-functions #'hywiki-completion-at-point t)
  (remove-hook 'company-completion-finished-hook  #'hywiki-completion-exit-function)
  (remove-hook 'company-completion-cancelled-hook #'hywiki-completion-exit-function)
  (advice-remove 'completion--insert #'hywiki-completion-exit-function)
  ;; Restore user's customized setting of these options.
  (custom-reevaluate-setting 'tab-always-indent))