garbas / vim-snipmate

snipMate.vim aims to be a concise vim script that implements some of TextMate's snippets features in Vim.
www.vim.org/scripts/script.php?script_id=2540
2.01k stars 181 forks source link

Install with Pathogen/Vundle unnecessary in Vim 8+ #297

Closed h3xx closed 10 months ago

h3xx commented 10 months ago

Ever since Vim 8 (released 2016-09-12), it's supported plugin directories natively in ~/.vim/pack/*/start/<plugin>.

For example:

mkdir -p ~/.vim/pack/my-ruby-stuff/start
git clone https://github.com/tpope/vim-rails ~/.vim/pack/my-ruby-stuff/start/vim-rails

This is sufficient to install the plugin on Vim 8.0 and later. No Pathogen or Vundle intervention is necessary whatsoever.

The installation instructions in this and other long-running projects have been the same since forever, suggesting now-obsolete things like Vundle or Pathogen. It's like the maintainers don't know about this feature of Vim. So, I'm just letting you know.

ajzafar commented 10 months ago

@h3xx Wow thank you for that information! I haven't been following Vim development as closely as I used to and completely missed it. I'm going to leave this open in a tab until I have time to update the instructions.

Thanks again!

ajzafar commented 10 months ago

New instructions added! Thanks again for pointing them out!