annotate runtime/indent/raml.vim @ 31938:96d6d31dd66b
v9.0.1301
patch 9.0.1301: virtual text below empty line not displayed
Commit: https://github.com/vim/vim/commit/9d9a20ee8799bafe9caac616fef11b7a26db6a8d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 11 13:49:01 2023 +0000
patch 9.0.1301: virtual text below empty line not displayed
Problem: Virtual text below empty line not displayed.
Solution: Adjust flags and computations. (closes https://github.com/vim/vim/issues/11959)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 11 Feb 2023 15:00:04 +0100 |
parents |
2b30a2b4bde2 |
children |
|
rev |
line source |
14999
|
1 " Vim indent file
|
|
2 " Language: RAML (RESTful API Modeling Language)
|
|
3 " Maintainer: mucheng <leisurelicht@gmail.com>
|
|
4 " License: VIM LICENSE
|
|
5 " Latest Revision: 2018-11-03
|
|
6
|
|
7 if exists("b:did_indent")
|
|
8 finish
|
|
9 endif
|
|
10
|
|
11 " Same as yaml indenting.
|
|
12 runtime! indent/yaml.vim
|