diff options
| author | Dmitry Gutov | 2020-06-18 18:42:28 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2020-06-18 18:42:38 +0300 |
| commit | 363d981811ef828606c0344a9d525b444551c7de (patch) | |
| tree | 67c6f50230259b0aafbac85fa5df9a5c90c16b60 | |
| parent | 3dd6b23cdfa64bdff2bdc9e7fbf9844a2ed6cd8f (diff) | |
| download | emacs-363d981811ef828606c0344a9d525b444551c7de.tar.gz emacs-363d981811ef828606c0344a9d525b444551c7de.zip | |
Add binding for project-kill-buffers
* lisp/progmodes/project.el (project-prefix-map):
Add binding for project-kill-buffers (bug#41868).
| -rw-r--r-- | lisp/progmodes/project.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index e24d81c1b43..7a41df614b9 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el | |||
| @@ -503,6 +503,7 @@ DIRS must contain directory names." | |||
| 503 | (define-key map "v" 'project-vc-dir) | 503 | (define-key map "v" 'project-vc-dir) |
| 504 | (define-key map "c" 'project-compile) | 504 | (define-key map "c" 'project-compile) |
| 505 | (define-key map "e" 'project-eshell) | 505 | (define-key map "e" 'project-eshell) |
| 506 | (define-key map "k" 'project-kill-buffers) | ||
| 506 | (define-key map "p" 'project-switch-project) | 507 | (define-key map "p" 'project-switch-project) |
| 507 | (define-key map "g" 'project-find-regexp) | 508 | (define-key map "g" 'project-find-regexp) |
| 508 | (define-key map "r" 'project-query-replace-regexp) | 509 | (define-key map "r" 'project-query-replace-regexp) |