Variable: hbmap:dir-user

hbmap:dir-user is a variable defined in hbmap.el.

Value

"/root/.hyperb/"

Documentation

Per user directory in which to store top level Hyperbole map data.

Must end with a directory separator. Hyperbole will try to create it whenever hyperb:init is called.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbmap.el
(defvar hyperb:microsoft-os-p)          ; Defined in hload-path.

(defvar hbmap:dir-user
  (if (and hyperb:microsoft-os-p
	   (not (getenv "HOME")))
      "c:/_hyperb/" "~/.hyperb/")
  "Per user directory in which to store top level Hyperbole map data.
Must end with a directory separator.
Hyperbole will try to create it whenever `hyperb:init' is called.")