annotate runtime/indent/raml.vim @ 27758:5a8258fde1d9
v8.2.4405
patch 8.2.4405: compiler warning for unused variable without +folding
Commit: https://github.com/vim/vim/commit/8329ab79b26be4c6c5766d80abae4a22385ee9e1
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 16 21:51:00 2022 +0000
patch 8.2.4405: compiler warning for unused variable without +folding
Problem: Compiler warning for unused variable without the +folding feature.
(Tony Mechelynck)
Solution: Add #ifdef.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 16 Feb 2022 23: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
|