annotate runtime/indent/dune.vim @ 24982:4cb423b9250d
v8.2.3028
patch 8.2.3028: GUI mouse events not tested
Commit: https://github.com/vim/vim/commit/f1e7449d567c630601aa0cec6c663b791785a668
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Mon Jun 21 18:44:26 2021 +0200
patch 8.2.3028: GUI mouse events not tested
Problem: GUI mouse events not tested.
Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few
viminfo tests. (Yegappan Lakshmanan, closes #8407)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 21 Jun 2021 18:45:04 +0200 |
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
|