Function: hywiki-directory-edit

hywiki-directory-edit is an interactive and byte-compiled function defined in hywiki.el.

Signature

(hywiki-directory-edit)

Documentation

Edit HyWiki pages in current hywiki-directory.

Use dired unless action-key-modeline-buffer-id-function is set to smart-treemacs-modeline, then use treemacs.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-directory-edit ()
  "Edit HyWiki pages in current `hywiki-directory'.
Use `dired' unless `action-key-modeline-buffer-id-function' is set to
`smart-treemacs-modeline', then use `treemacs'."
  (interactive)
  (if (eq action-key-modeline-buffer-id-function #'smart-treemacs-modeline)
      (hywiki-directory-treemacs-edit)
    (hywiki-directory-dired-edit)))