1

I know that you can use m and then a to add a child node in NERDTree to add files or directories one at a time. Is there anyway to type out a list, e.g. {Book,Author}.php and get a corresponding file or directory for each one in the list?

4

1 回答 1

1

If on Bash Shell, I would do this in Vim command mode:

q:i!touch  {Book,Author}.php
  • q:i -- Enter into Vim command history window (q:), then insert (i), it also let you edit commands with all Vim's editing power.
  • ! -- To use shell
  • **touch mydir/{my_file_1,my_file_2}.php -- This will create the empty files.
  • actually, do it in Bash Shell will be simpler.
于 2012-04-07T18:34:45.003 回答