Mercurial > vim
view runtime/compiler/sass.vim @ 18086:9d6832a5426f v8.1.2038
patch 8.1.2038: has('vimscript-4') is always 0
Commit: https://github.com/vim/vim/commit/af9143833865a2d8311e57313023271720442f90
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Sep 15 17:49:10 2019 +0200
patch 8.1.2038: has('vimscript-4') is always 0
Problem: has('vimscript-4') is always 0.
Solution: Add "vimscript-4" to the feature table. (Naruhiko Nishino,
closes #4941)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 15 Sep 2019 18:00:03 +0200 |
parents | 43efa4f5a8ea |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Sass " Maintainer: Tim Pope <vimNOSPAM@tpope.org> " Last Change: 2016 Aug 29 if exists("current_compiler") finish endif let current_compiler = "sass" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo-=C CompilerSet makeprg=sass CompilerSet errorformat= \%f:%l:%m\ (Sass::Syntax%trror), \%ESyntax\ %trror:%m, \%C%\\s%\\+on\ line\ %l\ of\ %f, \%Z%.%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save " vim:set sw=2 sts=2: