Variable: denote--menu-contents

denote--menu-contents is a variable defined in denote.el.

Value

Large value
("Denote"
 ["Create a note" denote :help "Create a new note in the `denote-directory'"]
 ["Create a note with given file type" denote-type :help "Create a new note with a given file type in the `denote-directory'"]
 ["Create a note in subdirectory" denote-subdirectory :help "Create a new note in a subdirectory of the `denote-directory'"]
 ["Create a note with date" denote-date :help "Create a new note with a given date in the `denote-directory'"]
 ["Create a note with signature" denote-signature :help "Create a new note with a given signature in the `denote-directory'"]
 ["Open a note or create it if missing" denote-open-or-create :help "Open an existing note in the `denote-directory' or create it if missing"]
 ["Open a note or create it with the chosen command" denote-open-or-create-with-command :help "Open an existing note or create it with the chosen command if missing"]
 "---"
 ["Rename a file" denote-rename-file :help "Rename file interactively" :enable
  (derived-mode-p 'dired-mode 'text-mode)]
 ["Rename this file using its front matter" denote-rename-file-using-front-matter :help "Rename the current file using its front matter as input" :enable
  (derived-mode-p 'text-mode)]
 ["Rename Dired marked files interactively" denote-dired-rename-files :help "Rename marked files in Dired by prompting for all file name components" :enable
  (derived-mode-p 'dired-mode)]
 ["Rename Dired marked files with keywords" denote-dired-rename-marked-files-with-keywords :help "Rename marked files in Dired by prompting for keywords" :enable
  (derived-mode-p 'dired-mode)]
 ["Rename Dired marked files using their front matter" denote-dired-rename-marked-files-using-front-matter :help "Rename marked files in Dired using their front matter as input" :enable
  (derived-mode-p 'dired-mode)]
 "---"
 ["Insert a direct link" denote-link :help "Insert link to a file in the `denote-directory'" :enable
  (derived-mode-p 'text-mode)]
 ["Insert a direct link to file with contents" denote-link-to-file-with-contents :help "Insert link to a file in the `denote-directory' whose contents include a query" :enable
  (derived-mode-p 'text-mode)]
 ["Insert a query link for file contents" denote-query-contents-link :help "Insert query link searching for file contents in the `denote-directory'" :enable
  (derived-mode-p 'text-mode)]
 ["Insert a query link for file names" denote-query-filenames-link :help "Insert query link searching for file names in the `denote-directory'" :enable
  (derived-mode-p 'text-mode)]
 "---"
 ["Insert links to file names matching regexp" denote-add-links :help "Insert links to file names in the `denote-directory' matching regexp" :enable
  (derived-mode-p 'text-mode)]
 ["Insert links to files whose contents match regexp" denote-link-to-all-files-with-contents :help "Insert links to file in the `denote-directory' whose contents match regexp" :enable
  (derived-mode-p 'text-mode)]
 ["Insert Dired marked files as links" denote-link-dired-marked-notes :help "Rename marked files in Dired as links in a Denote buffer" :enable
  (derived-mode-p 'dired-mode)]
 ["Show file backlinks" denote-backlinks :help "Insert link to a file in the `denote-directory'" :enable
  (derived-mode-p 'text-mode)]
 ["Link to existing note or newly created one" denote-link-or-create :help "Insert a link to an existing file, else create it and link to it" :enable
  (derived-mode-p 'text-mode)]
 ["Link to existing note or newly created one with the chosen command" denote-link-or-create-with-command :help "Insert a link to an existing file, else create it with the given command and link to it" :enable
  (derived-mode-p 'text-mode)]
 ["Create note in the background and link to it directly" denote-link-after-creating :help "Create new note and link to it from the current file" :enable
  (derived-mode-p 'text-mode)]
 ["Create note in the background with chosen command and link to it directly" denote-link-after-creating-with-command :help "Create new note with the chosen command and link to it from the current file" :enable
  (derived-mode-p 'text-mode)]
 "---"
 ["Generate sorted and filtered Dired listing" denote-sort-dired :help "Generate a sorted and filtered Dired listing of files in the `denote-directory'"]
 ["Perform a query in the contents of files" denote-grep :help "Search inside files in the `denote-directory'"]
 "---"
 ["Search inside the files of the last search (focused search)" denote-query-exclude-files :help "Perform a query inside only the files that matched the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Exclude files from last search" denote-query-exclude-files :help "Exclude files matching a regular expression from the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Exclude files with keywords from last search" denote-query-exclude-files-with-keywords :help "Exclude files matching the given keywords from the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Include only the given files from last search" denote-query-only-include-files :help "Include only the files matching the given regular expression from the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Include only the given files with keywords from last search" denote-query-only-include-files-with-keywords :help "Include only the files matching the given keywords from the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Sort files of last search" denote-query-sort-last-search :help "Change the order of the files matched in the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 ["Clear all filters from last search" denote-query-clear-all-filters :help "Clear all the filters that have been applied to the last search" :enable
  (derived-mode-p 'denote-query-mode)]
 "---"
 ["Highlight Dired file names" denote-dired-mode :help "Apply colors to Denote file name components in Dired" :enable
  (derived-mode-p 'dired-mode)
  :style toggle :selected
  (bound-and-true-p denote-dired-mode)])

Documentation

Contents of the Denote menu.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;; Define menu

(defvar denote--menu-contents
  '("Denote"
    ["Create a note" denote
     :help "Create a new note in the `denote-directory'"]
    ["Create a note with given file type" denote-type
     :help "Create a new note with a given file type in the `denote-directory'"]
    ["Create a note in subdirectory" denote-subdirectory
     :help "Create a new note in a subdirectory of the `denote-directory'"]
    ["Create a note with date" denote-date
     :help "Create a new note with a given date in the `denote-directory'"]
    ["Create a note with signature" denote-signature
     :help "Create a new note with a given signature in the `denote-directory'"]
    ["Open a note or create it if missing" denote-open-or-create
     :help "Open an existing note in the `denote-directory' or create it if missing"]
    ["Open a note or create it with the chosen command" denote-open-or-create-with-command
     :help "Open an existing note or create it with the chosen command if missing"]
    "---"
    ["Rename a file" denote-rename-file
     :help "Rename file interactively"
     :enable (derived-mode-p 'dired-mode 'text-mode)]
    ["Rename this file using its front matter" denote-rename-file-using-front-matter
     :help "Rename the current file using its front matter as input"
     :enable (derived-mode-p 'text-mode)]
    ["Rename Dired marked files interactively" denote-dired-rename-files
     :help "Rename marked files in Dired by prompting for all file name components"
     :enable (derived-mode-p 'dired-mode)]
    ["Rename Dired marked files with keywords" denote-dired-rename-marked-files-with-keywords
     :help "Rename marked files in Dired by prompting for keywords"
     :enable (derived-mode-p 'dired-mode)]
    ["Rename Dired marked files using their front matter" denote-dired-rename-marked-files-using-front-matter
     :help "Rename marked files in Dired using their front matter as input"
     :enable (derived-mode-p 'dired-mode)]
    "---"
    ["Insert a direct link" denote-link
     :help "Insert link to a file in the `denote-directory'"
     :enable (derived-mode-p 'text-mode)]
    ["Insert a direct link to file with contents" denote-link-to-file-with-contents
     :help "Insert link to a file in the `denote-directory' whose contents include a query"
     :enable (derived-mode-p 'text-mode)]
    ["Insert a query link for file contents" denote-query-contents-link
     :help "Insert query link searching for file contents in the `denote-directory'"
     :enable (derived-mode-p 'text-mode)]
    ["Insert a query link for file names" denote-query-filenames-link
     :help "Insert query link searching for file names in the `denote-directory'"
     :enable (derived-mode-p 'text-mode)]
    "---"
    ["Insert links to file names matching regexp" denote-add-links
     :help "Insert links to file names in the `denote-directory' matching regexp"
     :enable (derived-mode-p 'text-mode)]
    ["Insert links to files whose contents match regexp" denote-link-to-all-files-with-contents
     :help "Insert links to file in the `denote-directory' whose contents match regexp"
     :enable (derived-mode-p 'text-mode)]
    ["Insert Dired marked files as links" denote-link-dired-marked-notes
     :help "Rename marked files in Dired as links in a Denote buffer"
     :enable (derived-mode-p 'dired-mode)]
    ["Show file backlinks" denote-backlinks
     :help "Insert link to a file in the `denote-directory'"
     :enable (derived-mode-p 'text-mode)]
    ["Link to existing note or newly created one" denote-link-or-create
     :help "Insert a link to an existing file, else create it and link to it"
     :enable (derived-mode-p 'text-mode)]
    ["Link to existing note or newly created one with the chosen command" denote-link-or-create-with-command
     :help "Insert a link to an existing file, else create it with the given command and link to it"
     :enable (derived-mode-p 'text-mode)]
    ["Create note in the background and link to it directly" denote-link-after-creating
     :help "Create new note and link to it from the current file"
     :enable (derived-mode-p 'text-mode)]
    ["Create note in the background with chosen command and link to it directly" denote-link-after-creating-with-command
     :help "Create new note with the chosen command and link to it from the current file"
     :enable (derived-mode-p 'text-mode)]
    "---"
    ["Generate sorted and filtered Dired listing" denote-sort-dired
     :help "Generate a sorted and filtered Dired listing of files in the `denote-directory'"]
    ["Perform a query in the contents of files" denote-grep
     :help "Search inside files in the `denote-directory'"]
    "---"
    ["Search inside the files of the last search (focused search)" denote-query-exclude-files
     :help "Perform a query inside only the files that matched the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Exclude files from last search" denote-query-exclude-files
     :help "Exclude files matching a regular expression from the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Exclude files with keywords from last search" denote-query-exclude-files-with-keywords
     :help "Exclude files matching the given keywords from the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Include only the given files from last search" denote-query-only-include-files
     :help "Include only the files matching the given regular expression from the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Include only the given files with keywords from last search" denote-query-only-include-files-with-keywords
     :help "Include only the files matching the given keywords from the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Sort files of last search" denote-query-sort-last-search
     :help "Change the order of the files matched in the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    ["Clear all filters from last search" denote-query-clear-all-filters
     :help "Clear all the filters that have been applied to the last search"
     :enable (derived-mode-p 'denote-query-mode)]
    "---"
    ["Highlight Dired file names" denote-dired-mode
     :help "Apply colors to Denote file name components in Dired"
     :enable (derived-mode-p 'dired-mode)
     :style toggle
     :selected (bound-and-true-p denote-dired-mode)])
  "Contents of the Denote menu.")