annotate runtime/indent/obse.vim @ 32082:775d7d500959 v9.0.1372

patch 9.0.1372: test for 'toolbariconsize' may fail Commit: https://github.com/vim/vim/commit/db1887ce40452daea8c4e8734ec64202e5f24130 Author: James McCoy <jamessan@jamessan.com> Date: Thu Mar 2 18:36:33 2023 +0000 patch 9.0.1372: test for 'toolbariconsize' may fail Problem: Test for 'toolbariconsize' may fail. Solution: Only test 'toolbariconsize' when it is supported. (James McCoy, closes #12095)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Mar 2023 19:45:03 +0100
parents a7801222c9c5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31200
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim indent file
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Oblivion Language (obl)
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Original Creator: Kat <katisntgood@gmail.com>
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Maintainer: Kat <katisntgood@gmail.com>
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " Created: 01 November 2021
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " Last Change: 13 November 2022
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 if exists("b:did_indent")
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 finish
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let b:did_indent = 1
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 let b:undo_indent = 'setlocal indentkeys< indentexpr<'
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 setlocal indentexpr=GetOblIndent()
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 setlocal indentkeys+==~endif,=~else,=~loop,=~end
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 if exists("*GetOblIndent")
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 finish
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 let s:keepcpo = &cpo
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 set cpo&vim
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 let s:SKIP_LINES = '^\s*\(;.*\)'
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 function! GetOblIndent()
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 let lnum = prevnonblank(v:lnum - 1)
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 let cur_text = getline(v:lnum)
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 if lnum == 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 return 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 let prev_text = getline(lnum)
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 let found_cont = 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 let ind = indent(lnum)
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 " indent next line on start terms
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 let i = match(prev_text, '\c^\s*\(\s\+\)\?\(\(if\|while\|foreach\|begin\|else\%[if]\)\>\)')
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 if i >= 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 let ind += shiftwidth()
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 if strpart(prev_text, i, 1) == '|' && has('syntax_items')
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 \ && synIDattr(synID(lnum, i, 1), "name") =~ '\(Comment\|String\)$'
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 let ind -= shiftwidth()
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 " indent current line on end/else terms
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 if cur_text =~ '\c^\s*\(\s\+\)\?\(\(loop\|endif\|else\%[if]\)\>\)'
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 let ind = ind - shiftwidth()
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47 " if we are at a begin block just go to column 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 elseif cur_text =~ '\c^\s*\(\s\+\)\?\(\(begin\|end\)\>\)'
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 let ind = 0
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 endif
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51 return ind
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 endfunction
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
54 let &cpo = s:keepcpo
a7801222c9c5 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 unlet s:keepcpo