Mercurial > vim
view runtime/compiler/dartfmt.vim @ 26741:59dde78e9436 v8.2.3899
patch 8.2.3899: Vim9: test for map() on string fails
Commit: https://github.com/vim/vim/commit/ec86520f946a40d5c4a92d6a11d6928faa13abd4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Dec 25 22:10:42 2021 +0000
patch 8.2.3899: Vim9: test for map() on string fails
Problem: Vim9: test for map() on string fails.
Solution: Expect string return type.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 25 Dec 2021 23:15:04 +0100 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Dart Formatter " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2019 May 08 if exists("current_compiler") finish endif let current_compiler = "dartfmt" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo&vim CompilerSet makeprg=dartfmt CompilerSet errorformat=%Eline\ %l\\,\ column\ %c\ of\ %f:\ %m, \%Z\ %\\{3}│\ %\\+^%\\+, \%C%.%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save