vim-rubocop icon indicating copy to clipboard operation
vim-rubocop copied to clipboard

The Vim RuboCop plugin runs RuboCop and displays the results in Vim

Results 16 vim-rubocop issues
Sort by recently updated
recently updated
newest added

When you're using version control like git, you only want RuboCop to run on the parts of the file which were changed. Since there are many version control systems, it...

When you execute the Rubocop and there is no, an empty Quickfix List appears. What do you think about avoid it? It also helps to to add on BufWritePost.

Since RuboCop is typically slow, it would be great to run asynchronously. An example of a plugin that does this is [vim-rspec](https://github.com/thoughtbot/vim-rspec#custom-command). I tried implementing this myself but I don't...

If you use rubocop -a as autocmd on save, it will always open a cexpr. This is quite irritating. This commits add a silent flag (--silent, -s) to supress this...

Hi there, Not sure if you will be into all these changes but I figured I'd give it a shot to get 'em merged. The overarching goal is to improve...

The plugin works flawlessly when I launch vim from the command line however it fails within gVim: `|| /bin/bash: rubocop: command not found[/code]` Is it because I use rvm ?

I'm not much of a vimscripter, so this may seem pretty hacky. I'm happy to make all appropriate changes.

If call CTRL-X CTRL-O and then call :RuboCop ``` /home/amerov/.rvm/gems/ruby-2.3.1/gems/bundler-1.13.1/lib/bundler/rubygems_integration.rb|336| in `block (2 levels) in replace_gem': rubocop is not part of the bundle. Add it to Gemfile. (Gem:: LoadError) 2...

For some rubocop executables, a `--file` or `--path` option might be necessary to target a specific file to run the parser. I myself use a modified form of [rubocop-git](https://github.com/m4i/rubocop-git) (with...

RuboCop doesn't work well when `pwd` contains spaces. So i have to call it `:RuboCop "`pwd`"` to get the desired functionality. Please resolve the issue.