diff options
| author | Dmitry Gutov | 2020-06-17 01:24:01 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2020-06-17 01:24:40 +0300 |
| commit | 1d2c0a25274263acc06533b5b3c0e3cf01b303ea (patch) | |
| tree | e5bb5e532ba55d03b93d2ee1cfe54384420aaf21 | |
| parent | 6e777a66397659de5e0e15067b440fd7013a2796 (diff) | |
| download | emacs-1d2c0a25274263acc06533b5b3c0e3cf01b303ea.tar.gz emacs-1d2c0a25274263acc06533b5b3c0e3cf01b303ea.zip | |
Change the key for project-find-regexp
* lisp/progmodes/project.el (project-switch-commands):
Change the key for 'project-find-regexp' to 'g', which seems to be
the consensus.
| -rw-r--r-- | lisp/progmodes/project.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 22e57b4fe6f..ebb833776ea 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el | |||
| @@ -821,7 +821,7 @@ It's also possible to enter an arbitrary directory." | |||
| 821 | ;;;###autoload | 821 | ;;;###autoload |
| 822 | (defvar project-switch-commands | 822 | (defvar project-switch-commands |
| 823 | '((?f "Find file" project-find-file) | 823 | '((?f "Find file" project-find-file) |
| 824 | (?r "Find regexp" project-find-regexp) | 824 | (?g "Find regexp" project-find-regexp) |
| 825 | (?d "Dired" project-dired) | 825 | (?d "Dired" project-dired) |
| 826 | (?v "VC-Dir" project-vc-dir) | 826 | (?v "VC-Dir" project-vc-dir) |
| 827 | (?s "Shell" project-shell) | 827 | (?s "Shell" project-shell) |