Mercurial > vim
annotate runtime/compiler/dartdevc.vim @ 26234:92bad8cd95d5 v8.2.3648
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Commit: https://github.com/vim/vim/commit/4671e88d7d3ed12206d9cdd8892fe3b2cbc0d6ab
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 22 17:21:48 2021 +0000
patch 8.2.3648: "verbose pwd" is incorrect after dropping files on Vim
Problem: "verbose pwd" is incorrect after dropping files on Vim.
Solution: Set the chdir reason to "drop".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 22 Nov 2021 18:30:05 +0100 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
rev | line source |
---|---|
22171 | 1 " Vim compiler file |
2 " Compiler: Dart Development Compiler | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2019 May 08 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "dartdevc" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 CompilerSet makeprg=dartdevc | |
19 CompilerSet errorformat=%E%f:%l:%c:\ Error:\ %m, | |
20 \%CTry\ %.%#, | |
21 \%Z\ %#^%\\+, | |
22 \%Z%$, | |
23 \%C%.%#, | |
24 \%E%f:\ %trror:\ %m, | |
25 \%-G%.%# | |
26 | |
27 let &cpo = s:cpo_save | |
28 unlet s:cpo_save |