Sourcery now available in Vim!
Instantly refactor your Python code
Written by Brendan Maginnis on

We’re delighted to announce that Sourcery is now available in Vim 🎉.
This means you can use all of the great features of Sourcery directly in Vim:
- Instant refactoring suggestions. We’re the only tool that will refactor your code for you! As you edit, Sourcery will analyse your code and suggest improvements which you can preview and then apply with a single command.
- We don’t break your code. Sourcery uses extensive static analysis to ensure that its refactorings don’t change the existing functionality - backed up by testing on open source repositories.
- Code Quality Metrics. View the quality of any function and be shown warnings when the quality drops below a threshold.
Installation
Sourcery uses the the excellent coc.nvim LSP plugin to provide its functionality. There are complete installation instruction on our docs.
Sourcery in Action
Here’s a Sourcery refactoring suggestion shown using
:call CocAction('doHover')
Run :CocFix
to view the options to fix:
Press 1
and your code is instantly refactored:
Documentation
Check out our docs for more usage instructions and configuration options.
Thanks
Thanks to Marco Aguiar for working out how to use Sourcery in Vim 🙏!