annotate runtime/ftplugin/toml.vim @ 26672:3516017e5f54 v8.2.3865

patch 8.2.3865: Vim9: compiler complains about using "try" as a struct member Commit: https://github.com/vim/vim/commit/0d807107b66e0d30d4f338c272962af5714c400e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 21 09:42:09 2021 +0000 patch 8.2.3865: Vim9: compiler complains about using "try" as a struct member Problem: Vim9: compiler complains about using "try" as a struct member. Solution: Rename "try" to "tryref".
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Dec 2021 10:45:04 +0100
parents 3b34837f4538
children ef1c4fa8fc11
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: TOML
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Homepage: https://github.com/cespare/vim-toml
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Maintainer: Aman Verma
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " Author: Kevin Ballard <kevin@sb.org>
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " Last Change: Sep 21, 2021
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 if exists('b:did_ftplugin')
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 finish
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 endif
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let b:did_ftplugin = 1
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 let s:save_cpo = &cpo
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 set cpo&vim
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 let b:undo_ftplugin = 'setlocal commentstring< comments<'
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 setlocal commentstring=#\ %s
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 setlocal comments=:#
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 let &cpo = s:save_cpo
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 unlet s:save_cpo
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 " vim: et sw=2 sts=2