-
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
org-cycle problem in evil normal state #4024
Comments
It's probably another variant of #3472. The
There are people wanting to use @justbur found a clean way to satisfy everybody and this will probably be soon in |
Thanks for replying in time. (defun dotspacemacs/user-config ()
"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration. You are free to put any user code."
(define-key evil-normal-state-map (kbd "TAB") 'org-cycle)
) But it did not work as I expected. |
This is a temporary regression in develop, we will fix it soon, sorry for this. |
@dingmingxin like this in user-config (evil-define-key 'normal evil-jumper-mode-map (kbd "TAB") nil) |
Just want to mention that this is still broken for me in mainline. @justbur is there a way to do it so that that only takes effect for org mode? Something like |
Here are the layers that I loaded.
dotspacemacs-configuration-layers '( better-defaults emacs-lisp git markdown org )
When I start emacs in OSX Terminal.app , opening a org file. Hitting TAB key in the keyboard did not trigger function:
By describe-function org-cycle, I got:
I have nothing special settings in my Terminal.app. And Tab behavior is normal in "Gnu Emacs for OSX"(GUI mode).
spacemacs version: 0.104.6
emacs version: 25.1
osx: 10.11.1
How can I solve this problem .Can anyone help me out ? Much appreciations.
The text was updated successfully, but these errors were encountered: