vim-arcanist
vim-arcanist copied to clipboard
Feature Request: Arc lint integration
It would be nice if you could run :ArcLint and have it populate the vim quickfix list.
Hey, I know I'm digging out dead threads, but it turns out such integration is relatively easy: I've done it (badly) for Emacs in arcanist-flymake.
Before throwing stones about the editor war: Turns out arc lint --output compiler returns strings in a really nice format to parse:
myfile.py:10:warning (W123) Missing semicolon
otherfile.txt:23:autofix (AUTO321) Something else
So yeah, if anyone wants to have a go implementing this, this is one metric regex away (see the regex format)