moll / vim-node

Tools and environment to make Vim superb for developing with Node.js. Like Rails.vim for Node.
http://www.vim.org/scripts/script.php?script_id=4674
Other
807 stars 59 forks source link

vim-node README.md install instructions update #45

Open dmwaff opened 6 years ago

dmwaff commented 6 years ago

https://github.com/moll/vim-node README.md

Using Wget: wget https://github.com/moll/vim-node/archive/master.tar.gz -O- | tar -xf- --strip-components 1 -C ~/.vim/bundle/node

  1. Requires tar's -z option (tar -x -z -f) to gunzip the tar.gz file.
  2. Readability recommendation only, add space between wget -O option and stdout (-).
  3. Readability recommendation only, add space between tar -f option and stdin (-).

Using long options: wget --output-document=- https://github.com/moll/vim-node/archive/master.tar.gz | tar --extract --gunzip --strip-components 1 --file=- --directory=~/.vim/bundle/node OR Using short options: wget -O - https://github.com/moll/vim-node/archive/master.tar.gz | tar --strip-components 1 -xzf - -C ~/.vim/bundle/node

Cheers