NERDTree - how to delete file

VimNerdtree

Vim Problem Overview


How do you delete a file using NERDTree: vim plugin page?

I have put this into my .vimrc file:

set modifiable

but I don't know the command to delete!

Vim Solutions


Solution 1 - Vim

This https://stackoverflow.com/questions/3102115/how-to-create-folders-in-vim-by-preference-using-nerdtree should give an answer. Just type m in NERDTree window and a dialogue appears in a QuickFix window

In addition there has been made a plugin on top of nerdtree https://github.com/ivalkeen/nerdtree-execute which allows to execute files with m+x -> I use it to open pdfs I get from compiling LaTeX

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionaleView Question on Stackoverflow
Solution 1 - VimepsilonhalbeView Answer on Stackoverflow