Skip to content

Commit

Permalink
Use b instead of a in home buffer for bookmarks
Browse files Browse the repository at this point in the history
Even if it shadows `b` in motion state, I never used it and I doubt
that it is really useful, and there is still `B` available.
  • Loading branch information
syl20bnr committed Jan 4, 2016
1 parent 96a648d commit b426098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/core-spacemacs-buffer.el
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ HPADDING is the horizontal spacing betwee the content line and the frame border.
((eq el 'bookmarks)
(helm-mode)
(when (spacemacs-buffer//insert-bookmark-list "Bookmarks:" (bookmark-all-names))
(spacemacs//insert--shortcut "a" "Bookmarks:")
(spacemacs//insert--shortcut "b" "Bookmarks:")
(insert list-separator)))
((eq el 'projects)
(projectile-mode)
Expand Down

1 comment on commit b426098

@caikechao
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But b does not jump to the Bookmarks if you change the keybinding in this way ...

Please sign in to comment.