Variable: hywiki--open-close-hasht

hywiki--open-close-hasht is a variable defined in hywiki.el.

Value

#s(hash-table size 6 test eql rehash-size 1.5 rehash-threshold 0.8125 data
	      (\" 34 \' 39 { 125 \[ 93 < 62 \( 41))

Documentation

Delimiter htable with (open-delim-string . close-delim-char) key-value pairs.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defconst hywiki--open-close-hasht (hash-make '(("\"" . ?\")
					       ("'" . ?\')
					       ("{"  . ?})
					       ("["  . ?\])
					       ("<"  . ?>)
					       ("("  . ?\)))
                                             t)
  "Delimiter htable with (open-delim-string . close-delim-char) key-value pairs.")