annotate runtime/indent/dune.vim @ 31616:0eb51cec2154
v9.0.1140
patch 9.0.1140: cannot call an object method in a compiled function
Commit: https://github.com/vim/vim/commit/574950dfb1d353f094463b709e39544ebf8fcdcd
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 3 19:08:50 2023 +0000
patch 9.0.1140: cannot call an object method in a compiled function
Problem: Cannot call an object method in a compiled function.
Solution: Compile the instructins to invoke an object method.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 03 Jan 2023 20:15:03 +0100 |
parents |
15fa3923cc49 |
children |
5c220cf30f1f |
rev |
line source |
23466
|
1 " Vim indent file
|
|
2 " Language: dune
|
|
3 " Maintainers: Markus Mottl <markus.mottl@gmail.com>
|
|
4 " URL: https://github.com/ocaml/vim-ocaml
|
|
5 " Last Change: 2021 Jan 01
|
|
6
|
|
7 if exists("b:did_indent")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_indent = 1
|
|
11
|
|
12 " dune format-dune-file uses 1 space to indent
|
|
13 setlocal softtabstop=1 shiftwidth=1 expandtab
|