Variable: hywiki-non-character-commands

hywiki-non-character-commands is a variable defined in hywiki.el.

Value

(org-cycle org-open-line org-return org-return-and-maybe-indent
	   markdown-cycle markdown-enter-key
	   electric-newline-and-maybe-indent newline
	   newline-and-indent open-line quoted-insert)

Documentation

List of non-character commands.

Commands that insert characters but whose input events do not arrive as characters or that quote another character for input.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defvar hywiki-non-character-commands
  '(;; Org mode
    org-cycle                         ;; TAB
    org-open-line                     ;; C-o
    org-return                        ;; RET, \r
    org-return-and-maybe-indent       ;; C-j, \n
    ;; Markdown mode
    markdown-cycle                    ;; TAB
    markdown-enter-key                ;; RET, \r
    electric-newline-and-maybe-indent ;; C-j, \n
    ;; Global
    newline                           ;; RET, \r
    newline-and-indent                ;; RET, \r
    open-line                         ;; C-o
    quoted-insert                     ;; C-q
    )
  "List of non-character commands.
Commands that insert characters but whose input events do not
arrive as characters or that quote another character for input.")