emacs-31 61c7285a959: ; Document project-remember-project.
Sean Whitton <[email protected]>
| Newsgroups | gmane.emacs.diffs |
|---|---|
| Message-ID | <[email protected]> |
branch: emacs-31 commit 61c7285a959b3de178009cf1d7554744b332833a Author: Sean Whitton <[email protected]> Commit: Sean Whitton <[email protected]> ; Document project-remember-project. --- doc/emacs/maintaining.texi | 9 ++++++--- etc/NEWS | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index b5f7c362a91..3c7f24c9666 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -2330,16 +2330,19 @@ records the list of known projects. It defaults to the file @subsection Managing the Project List File @table @kbd +@item M-x project-remember-project +Add the current project to the @code{project-list-file}. @item M-x project-forget-project Remove a known project from the @code{project-list-file}. @end table +@findex project-remember-project @findex project-forget-project Normally Emacs automatically adds and removes projects to and from the @code{project-list-file}, but sometimes you may want to manually edit -the available projects. @kbd{M-x project-forget-project} -prompts you to choose one of the available projects, and then removes -it from the file. +the available projects. @kbd{M-x project-remember-project} remembers +the current project, and @kbd{M-x project-forget-project} prompts you to +choose one of the available projects, and then removes it from the file. @vindex project-list-exclude The user option @code{project-list-exclude} may be set to always diff --git a/etc/NEWS b/etc/NEWS index 5f5f59d2a9f..768a8dc79df 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1113,6 +1113,7 @@ project should be removed. *** New command 'project-save-some-buffers' bound to 'C-x p C-x s'. This is like 'C-x s', but only for this project's buffers. ++++ *** 'project-remember-project' is now interactive. ---