annotate runtime/compiler/yamllint.vim @ 26171:fa8161b003f6
v8.2.3617
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Commit: https://github.com/vim/vim/commit/0526815c15170a5926e1008600ec29d42d8b64c2
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 18 18:53:45 2021 +0000
patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Problem: ":verbose pwd" does not mention 'autochdir' was applied.
Solution: Remember the last chdir was done by 'autochdir'. (issue https://github.com/vim/vim/issues/9142)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 18 Nov 2021 20:00:06 +0100 |
parents |
bdda48f01a68 |
children |
e1df51f68736 |
rev |
line source |
25402
|
1 " Vim compiler file
|
|
2 " Compiler: Yamllint for YAML
|
|
3 " Maintainer: Romain Lafourcade <romainlafourcade@gmail.com>
|
|
4 " Last Change: 2021 July 21
|
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "yamllint"
|
|
10
|
|
11 if exists(":CompilerSet") != 2
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
|
15 CompilerSet makeprg=yamllint\ -f\ parsable
|
|
16
|