.vim/compiler/rubocop.vim

Wed, 05 Apr 2023 03:44:38 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 05 Apr 2023 03:44:38 -0400
changeset 1098
8d479a558198
parent 660
0c78da269df5
permissions
-rw-r--r--

Remove long signature previews

if exists("current_compiler")
  finish
endif
let current_compiler = "rubocop"

if exists(":CompilerSet") != 2
  command -nargs=* CompilerSet setlocal <args>
endif

let s:savecpo = &cpo
set cpo&vim

CompilerSet makeprg=rubocop\ -f\ c\ %
CompilerSet errorformat=%f:%l:%c:\ %t:\ %m,%E%f:%l:\ %m

let &cpo = s:savecpo
unlet s:savecpo

mercurial