-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change shortcut of bookmarks in *spacemacs* buffer #2677
Conversation
👍 Looks good to me! |
@travisbhartwell 😄 Thanks again for your help! |
👍 |
I hit this today! Seems simple enough change to get in develop @TheBB. |
Sorry, I just run |
A little bit 😂 I suppose you did the rebase against |
Oh... 😱 What can I do to make it right? |
You can try this: git checkout bookmark-shortcut
git reset --hard 5797abe
git rebase develop And if everything looks right you can the force the push:
|
e26de7d
to
c7d7702
Compare
@StreakyCobra Thanks for your help! I am still learning git... |
In *spacemacs* buffer, the quick help in `[?]` shows that `m` jumps to the menu. However, if one customizes the startup lists by setting `dotspacemacs-startup-lists '(recents bookmarks projects)`, the shortcut `m` of jumping to the menu would be shadowed and `m` jumps to Bookmarks. With the help of @travisbhartwell and @TheBB, I changed the shortcut of jumping to the Bookmarks to `a` to avoid this shortcut conflict.
c7d7702
to
d688014
Compare
Thank you 👍 I updated the commit message to remove the |
In spacemacs buffer, the quick help in
[?]
shows thatm
jumps tothe menu. However, if one customizes the startup lists by setting
dotspacemacs-startup-lists '(recents bookmarks projects)
, theshortcut
m
of jumping to the menu would be shadowed andm
jumps toBookmarks.
With the help of @travisbhartwell and @TheBB, I changed the shortcut of
jumping to the Bookmarks to
a
to avoid this shortcut conflict.