Variable: menu-bar-buffers-menu-command-entries

menu-bar-buffers-menu-command-entries is a variable defined in menu-bar.el.gz.

Value

((command-separator "--")
 (next-buffer menu-item "Next Buffer" next-buffer :help
	      "Switch to the \"next\" buffer in a cyclic order")
 (previous-buffer menu-item "Previous Buffer" previous-buffer :help
		  "Switch to the \"previous\" buffer in a cyclic order")
 (select-named-buffer menu-item "Select Named Buffer..."
		      switch-to-buffer :help
		      "Prompt for a buffer name, and select that buffer in the current window")
 (list-all-buffers menu-item "List All Buffers" list-buffers :help
		   "Pop up a window listing all Emacs buffers")
 (select-buffer-in-project menu-item "Select Buffer In Project..."
			   project-switch-to-buffer :help
			   "Prompt for a buffer belonging to current project, and switch to it")
 (list-buffers-in-project menu-item "List Buffers In Project..."
			  project-list-buffers :help
			  "Pop up a window listing all Emacs buffers belonging to current project"))

Documentation

Entries to be included at the end of the "Buffers" menu.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(defvar menu-bar-buffers-menu-command-entries
  (list '(command-separator "--")
	(list 'next-buffer
	      'menu-item
	      "Next Buffer"
	      'next-buffer
	      :help "Switch to the \"next\" buffer in a cyclic order")
	(list 'previous-buffer
	      'menu-item
	      "Previous Buffer"
	      'previous-buffer
	      :help "Switch to the \"previous\" buffer in a cyclic order")
	(list 'select-named-buffer
	      'menu-item
	      "Select Named Buffer..."
	      'switch-to-buffer
	      :help "Prompt for a buffer name, and select that buffer in the current window")
	(list 'list-all-buffers
	      'menu-item
	      "List All Buffers"
	      'list-buffers
	      :help "Pop up a window listing all Emacs buffers")
	(list 'select-buffer-in-project
	      'menu-item
	      "Select Buffer In Project..."
	      'project-switch-to-buffer
	      :help "Prompt for a buffer belonging to current project, and switch to it")
	(list 'list-buffers-in-project
	      'menu-item
	      "List Buffers In Project..."
	      'project-list-buffers
	      :help "Pop up a window listing all Emacs buffers belonging to current project"))
  "Entries to be included at the end of the \"Buffers\" menu.")