We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Following is code:
((eq neo-keymap-style 'default) (define-key map (kbd "C-c C-n") 'neotree-create-node) (define-key map (kbd "C-c C-d") 'neotree-delete-node) (define-key map (kbd "C-c C-r") 'neotree-rename-node) (define-key map (kbd "C-c C-p") 'neotree-copy-node)) ((eq neo-keymap-style 'concise) (define-key map (kbd "C") 'neotree-change-root) (define-key map (kbd "c") 'neotree-create-node) (define-key map (kbd "+") 'neotree-create-node) (define-key map (kbd "d") 'neotree-delete-node) (define-key map (kbd "r") 'neotree-rename-node) (define-key map (kbd "e") 'neotree-enter)))
I think, we should binding this command to (kbd "p"), right?
(kbd "p")
Thanks
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following is code:
I think, we should binding this command to
(kbd "p")
, right?Thanks
Thanks.
The text was updated successfully, but these errors were encountered: