comparison runtime/indent/eterm.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 d0a20101ecb2
children
comparison
equal deleted inserted replaced
25879:14ca7cc78a56 25880:9c221ad9634a
1 " Vim indent file 1 " Vim indent file
2 " Language: Eterm configuration file 2 " Language: Eterm configuration file
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> 3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
4 " Latest Revision: 2006-12-20 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
5 " Last Change: 24 Sep 2021
5 6
6 if exists("b:did_indent") 7 if exists("b:did_indent")
7 finish 8 finish
8 endif 9 endif
9 let b:did_indent = 1 10 let b:did_indent = 1
10 11
11 setlocal indentexpr=GetEtermIndent() 12 setlocal indentexpr=GetEtermIndent()
12 setlocal indentkeys=!^F,o,O,=end 13 setlocal indentkeys=!^F,o,O,=end
13 setlocal nosmartindent 14 setlocal nosmartindent
15
16 let b:undo_indent = "setl inde< indk< si<"
14 17
15 if exists("*GetEtermIndent") 18 if exists("*GetEtermIndent")
16 finish 19 finish
17 endif 20 endif
18 21