Function: denote-rename-file-signature

denote-rename-file-signature is an interactive and byte-compiled function defined in denote.el.

Signature

(denote-rename-file-signature)

Documentation

Convenience command to change the signature of a file.

Like denote-rename-file, but prompts only for the signature.

Add or remove a signature in one go. Do this by prepopulating the minibuffer prompt with the existing signature. The user can then modify it accordingly. An empty input means to remove the signature altogether.

Please check the documentation of denote-rename-file with regard to how a completion User Interface may accept an empty input.

Key Bindings

Aliases

denote-add-signature (obsolete since 3.0.0) denote-remove-signature (obsolete since 3.0.0)

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-rename-file-signature ()
  "Convenience command to change the signature of a file.
Like `denote-rename-file', but prompts only for the signature.

Add or remove a signature in one go.  Do this by prepopulating the
minibuffer prompt with the existing signature.  The user can then modify
it accordingly.  An empty input means to remove the signature
altogether.

Please check the documentation of `denote-rename-file' with regard to
how a completion User Interface may accept an empty input."
  (declare (interactive-only t))
  (interactive)
  (let ((denote-prompts '(signature)))
    (call-interactively #'denote-rename-file)))