comparison runtime/indent/tcl.vim @ 25880:9c221ad9634a

Update runtime files Commit: https://github.com/vim/vim/commit/6e649224926bbc1df6a4fdfa7a96b4acb1f8bee0 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 4 21:32:54 2021 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Oct 2021 22:45:05 +0200
parents 834b7854aa3c
children
comparison
equal deleted inserted replaced
25879:14ca7cc78a56 25880:9c221ad9634a
1 " Vim indent file 1 " Vim indent file
2 " Language: Tcl 2 " Language: Tcl
3 " Latest Update: Chris Heithoff <chrisheithoff@gmail.com> 3 " Maintainer: Chris Heithoff <chrisheithoff@gmail.com>
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
5 " Latest Revision: 2018-12-05 5 " Last Change: 24 Sep 2021
6 6
7 if exists("b:did_indent") 7 if exists("b:did_indent")
8 finish 8 finish
9 endif 9 endif
10 let b:did_indent = 1 10 let b:did_indent = 1
11 11
12 setlocal indentexpr=GetTclIndent() 12 setlocal indentexpr=GetTclIndent()
13 setlocal indentkeys=0{,0},!^F,o,O,0] 13 setlocal indentkeys=0{,0},!^F,o,O,0]
14 setlocal nosmartindent 14 setlocal nosmartindent
15
16 let b:undo_indent = "setl inde< indk< si<"
15 17
16 if exists("*GetTclIndent") 18 if exists("*GetTclIndent")
17 finish 19 finish
18 endif 20 endif
19 21