Mercurial > vim
view runtime/compiler/sass.vim @ 19091:1c75e1974313 v8.2.0106
patch 8.2.0106: printf formats are not exactly right
Commit: https://github.com/vim/vim/commit/b16ad968499aeb29b6ff9be6cc64fb41522a4a5e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jan 8 22:06:14 2020 +0100
patch 8.2.0106: printf formats are not exactly right
Problem: Printf formats are not exactly right.
Solution: Adjust signed/unsigned conversions. (Frazer Clews, closes https://github.com/vim/vim/issues/5456)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 08 Jan 2020 22:15:03 +0100 |
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: