Reputation: 2717
I started using vim (MacVim) + NERDTree recently, and I'm getting some strange behavior editing my notes (simple text files).
Can anyone explain why the filenames are red, and why they have an asterix next to them? They are saved, they are most certainly present - so I'm not sure why exactly they're colored differently.
Upvotes: 12
Views: 3142
Reputation: 270767
The coloration and asterisk marker indicates that those files are executable. From the NERDTree script homepage:
Different highlighting is provided for the following types of nodes:
If you have enabled (enabled by default) NERDTree's
exec_menuitem.vim
plugin, and press m to bring up the menu on those executable files (though in your case I suspect those were not supposed to be executable), you will get a menu item to execute them from within Vim.
Upvotes: 17