.vim/compiler/vale.vim

Tue, 28 Aug 2018 18:09:17 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 28 Aug 2018 18:09:17 -0500
changeset 719
490da8798a6a
parent 659
f3e2c22ea809
permissions
-rw-r--r--

add bin/rb, from https://github.com/thisredone/rb

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

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

let s:savecpo = &cpo
set cpo&vim

CompilerSet makeprg=vale\ --output=line\ %

let &cpo = s:savecpo
unlet s:savecpo

mercurial