Reformat and change new binding to be consistent with upstream

See #15637
This commit is contained in:
Maxi Wolff 2022-07-31 15:56:51 +02:00
parent e348e4cda4
commit d49e7a35c1
No known key found for this signature in database
GPG Key ID: 2DD07025BFDBD89A
2 changed files with 4 additions and 8 deletions

View File

@ -3657,6 +3657,7 @@ To search in a project see [[#searching-in-a-project][project searching]].
| ~SPC p a~ | toggle between implementation and test |
| ~SPC p b~ | switch to project buffer |
| ~SPC p c~ | compile project using =projectile= |
| ~SPC p u~ | run project using =projectile= |
| ~SPC p d~ | find directory |
| ~SPC p D~ | open project root in =dired= |
| ~SPC p e~ | edit dir-locals.el |

View File

@ -20,13 +20,8 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(setq spacemacs-project-packages
'(
projectile
))
(defconst spacemacs-project-packages
'(projectile))
(defun spacemacs-project/init-projectile ()
(use-package projectile
@ -82,7 +77,7 @@
"pa" 'projectile-toggle-between-implementation-and-test
"pb" 'projectile-switch-to-buffer
"pc" 'projectile-compile-project
"pC" 'projectile-run-project
"pu" 'projectile-run-project
"pd" 'projectile-find-dir
"pD" 'projectile-dired
"pe" 'projectile-edit-dir-locals