Move key binding SPC b d to SPC f d

This is the file that is deleted (to be more accurate with
Emacs terminology)
This commit is contained in:
syl20bnr 2015-01-04 00:23:22 -05:00
parent ee3d6048f7
commit 7ecaa4e094
2 changed files with 2 additions and 2 deletions

View file

@ -1073,7 +1073,6 @@ Buffer manipulation commands (start with `b`):
Key Binding | Description
------------------------------------------|----------------------------------------------------------------
<kbd>SPC b b</kbd> or <kbd>SPC TAB</kbd> | switch to alternate buffer (switch back and forth)
<kbd>SPC b d</kbd> | delete the current buffer **and** file (ask for confirmation)
<kbd>SPC b e</kbd> | erase the content of the buffer (ask for confirmation)
<kbd>SPC b k</kbd> | kill the current buffer
<kbd>SPC b K</kbd> | kill all buffers except the current one
@ -1093,6 +1092,7 @@ Files manipulation commands (start with `f`):
Key Binding | Description
------------------------------------------|----------------------------------------------------------------
<kbd>SPC f d</kbd> | delete a file and the associated buffer (ask for confirmation)
<kbd>SPC f f</kbd> | open a file using `ido`
<kbd>SPC f s</kbd> | save a file
<kbd>SPC f S</kbd> | save all files

View file

@ -36,7 +36,6 @@
(evil-leader/set-key
"bb" 'spacemacs/alternate-buffer ;; switch back and forth between two last buffers
"TAB" 'spacemacs/alternate-buffer
"bd" 'delete-current-buffer-file
"be" 'spacemacs/safe-erase-buffer
"bK" 'kill-other-buffers
"bk" 'ido-kill-buffer
@ -67,6 +66,7 @@
"fg" 'rgrep)
;; file -----------------------------------------------------------------------
(evil-leader/set-key
"fd" 'delete-current-buffer-file
"fei" 'find-user-init-file
"fes" 'find-spacemacs-file
"fec" 'find-contrib-file