-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Expand functionality of <CR> mapping #1011
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Default Open" means to open a file with the Enter key (which of course can be changed.) The key can be changed in the vimrc, and there is a variable for specifying the Opener parameters for opening the node. This lets the user decide whether Enter (or another key) will open a file in the current tab or a new one, and whether or not to open the file again in the tab or jump to a window where the file is already open.
<CR> will be defined like all the other keys, in plugin/NERD_tree.vim
Three separate functions handle directories, files, and bookmarks.
@PhilRunninger, started getting this error on attempt to open my bookmarks:
Vim info:
|
Cool, thank you very much! |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Changes
Closes #551
Closes #631
This change creates a customizable key mapping that can open files or directories in a way that is different from the normal commands. By default, it is set to
<CR>
, the Enter key, and its action is to do the same thing as theo
key. But the key assigned to this action, and the options given to the internal NERDTreeopen
functions, can be changed. The documentation describes the values that can be set in these options.This pull request addresses two outstanding issues.
#551 - Use Enter to open a file in a new tab. To do this, add the following to your .vimrc.
#631 - Use Enter to open a file in the current tab, even if open in another one. This requires the reuse flag to be overridden, and is done with this code in your .vimrc.
Many other such customizations are possible, and are documented in the NERDTree help file.
New Version Info
MAJOR
version when you make incompatible API changes,MINOR
version when you add functionality in a backwards-compatible manner, andPATCH
version when you make backwards-compatible bug fixes.