wlangstroth / vim-racket

vim bundle for Racket
MIT License
234 stars 60 forks source link

Support Vim 8 package management #54

Closed cole-miller closed 3 years ago

cole-miller commented 4 years ago

Vim 8 added a built-in "packages" feature, which to some extent obsoletes plugin managers like pathogen. Integrating with this feature involves a new plugin layout, which luckily can coexist with the old layout: see the Rust language plugin for a good example. It would be useful for this plugin to support the Vim 8 approach in a similar way.

benknoble commented 3 years ago

Just browsing around, but it is not the case that any new layout is necessary.

Just clone the repo (or submodule it, or whatever) under ~/.vim/pack/PACKAGE_NAME/{start,opt}/racket (pick one of start or opt). If opt, you'll need to packadd when necessary.

cole-miller commented 3 years ago

Thanks, must've misunderstood the documentation.