From: Dmitry Gutov Date: Wed, 17 Jun 2020 23:10:33 +0000 (+0300) Subject: ; Add a heading and a binding X-Git-Tag: emacs-28.0.90~7156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4b9b9cb43a84c1d4c018b9fe1153685e57ffcaa4;p=emacs.git ; Add a heading and a binding --- diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index d8f56acedf3..e772570b9e1 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -490,10 +490,14 @@ DIRS must contain directory names." ;; Sidestep the issue of expanded/abbreviated file names here. (cl-set-difference files dirs :test #'file-in-directory-p)) + +;;; Project commands + ;;;###autoload (defvar project-prefix-map (let ((map (make-sparse-keymap))) (define-key map "f" 'project-find-file) + (define-key map "b" 'project-switch-to-buffer) (define-key map "s" 'project-shell) (define-key map "d" 'project-dired) (define-key map "v" 'project-vc-dir)