Skip to content

Migration guide (Vim)

Gabriel Volpe edited this page May 6, 2019 · 1 revision

Previous artifacts were published using the com.github.gvolpe group id and using the same package name for all the classes / data.

For a quick migration here are the recommended commands in vim/nvim:

:args `grep -r -l 'com.github.gvolpe' .`
:argdo %s/com.github.gvolpe/dev.profunktor/g | update

The first command will search recursively for the package name in all the files under the current directory and the second command will replace all the results with the new package name dev.profunktor.

Sorry about non-vim users... You'll need to use a similar search and replace tool in your preferred text editor / IDE.

Clone this wiki locally