Mercurial > vim
annotate runtime/indent/cmake.vim @ 28897:37e05627acb1 v8.2.4971
patch 8.2.4971: Vim9: interpolated string seen as range
Commit: https://github.com/vim/vim/commit/40c141d333292d625907f4de13766cbbc2223911
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue May 17 13:14:23 2022 +0100
patch 8.2.4971: Vim9: interpolated string seen as range
Problem: Vim9: interpolated string seen as range.
Solution: Recognize an interpolated string at the start of a command line.
(closes #10434)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 17 May 2022 14:15:02 +0200 |
parents | 6dd88e45d47d |
children | c82f521e9a43 |
rev | line source |
---|---|
836 | 1 " Vim indent file |
2 " Language: CMake (ft=cmake) | |
3 " Author: Andy Cedilnik <andy.cedilnik@kitware.com> | |
12499 | 4 " Maintainer: Dimitri Merejkowsky <d.merej@gmail.com> |
5 " Former Maintainer: Karthik Krishnan <karthik.krishnan@kitware.com> | |
28379 | 6 " Last Change: 2022 Apr 06 |
836 | 7 " |
8 " Licence: The CMake license applies to this file. See | |
12499 | 9 " https://cmake.org/licensing |
836 | 10 " This implies that distribution with Vim is allowed |
11 | |
12 if exists("b:did_indent") | |
13 finish | |
14 endif | |
15 let b:did_indent = 1 | |
16 | |
17 setlocal indentexpr=CMakeGetIndent(v:lnum) | |
2249
6d3d35ff2c2b
Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
18 setlocal indentkeys+==ENDIF(,ENDFOREACH(,ENDMACRO(,ELSE(,ELSEIF(,ENDWHILE( |
836 | 19 |
28379 | 20 let b:undo_indent = "setl inde< indk<" |
21 | |
836 | 22 " Only define the function once. |
23 if exists("*CMakeGetIndent") | |
24 finish | |
25 endif | |
3526
dd6c2497c997
Fix more 'cpo' issues in runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2249
diff
changeset
|
26 let s:keepcpo= &cpo |
dd6c2497c997
Fix more 'cpo' issues in runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2249
diff
changeset
|
27 set cpo&vim |
836 | 28 |
29 fun! CMakeGetIndent(lnum) | |
30 let this_line = getline(a:lnum) | |
31 | |
32 " Find a non-blank line above the current line. | |
33 let lnum = a:lnum | |
34 let lnum = prevnonblank(lnum - 1) | |
35 let previous_line = getline(lnum) | |
36 | |
37 " Hit the start of the file, use zero indent. | |
38 if lnum == 0 | |
39 return 0 | |
40 endif | |
41 | |
42 let ind = indent(lnum) | |
43 | |
44 let or = '\|' | |
45 " Regular expressions used by line indentation function. | |
46 let cmake_regex_comment = '#.*' | |
47 let cmake_regex_identifier = '[A-Za-z][A-Za-z0-9_]*' | |
48 let cmake_regex_quoted = '"\([^"\\]\|\\.\)*"' | |
49 let cmake_regex_arguments = '\(' . cmake_regex_quoted . | |
50 \ or . '\$(' . cmake_regex_identifier . ')' . | |
51 \ or . '[^()\\#"]' . or . '\\.' . '\)*' | |
52 | |
53 let cmake_indent_comment_line = '^\s*' . cmake_regex_comment | |
839 | 54 let cmake_indent_blank_regex = '^\s*$' |
836 | 55 let cmake_indent_open_regex = '^\s*' . cmake_regex_identifier . |
56 \ '\s*(' . cmake_regex_arguments . | |
57 \ '\(' . cmake_regex_comment . '\)\?$' | |
58 | |
59 let cmake_indent_close_regex = '^' . cmake_regex_arguments . | |
60 \ ')\s*' . | |
61 \ '\(' . cmake_regex_comment . '\)\?$' | |
62 | |
2249
6d3d35ff2c2b
Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
63 let cmake_indent_begin_regex = '^\s*\(IF\|MACRO\|FOREACH\|ELSE\|ELSEIF\|WHILE\|FUNCTION\)\s*(' |
6d3d35ff2c2b
Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
64 let cmake_indent_end_regex = '^\s*\(ENDIF\|ENDFOREACH\|ENDMACRO\|ELSE\|ELSEIF\|ENDWHILE\|ENDFUNCTION\)\s*(' |
836 | 65 |
66 " Add | |
67 if previous_line =~? cmake_indent_comment_line " Handle comments | |
68 let ind = ind | |
69 else | |
70 if previous_line =~? cmake_indent_begin_regex | |
12559 | 71 let ind = ind + shiftwidth() |
836 | 72 endif |
73 if previous_line =~? cmake_indent_open_regex | |
12559 | 74 let ind = ind + shiftwidth() |
836 | 75 endif |
76 endif | |
77 | |
78 " Subtract | |
79 if this_line =~? cmake_indent_end_regex | |
12559 | 80 let ind = ind - shiftwidth() |
836 | 81 endif |
82 if previous_line =~? cmake_indent_close_regex | |
12559 | 83 let ind = ind - shiftwidth() |
836 | 84 endif |
85 | |
86 return ind | |
87 endfun | |
3526
dd6c2497c997
Fix more 'cpo' issues in runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2249
diff
changeset
|
88 |
dd6c2497c997
Fix more 'cpo' issues in runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2249
diff
changeset
|
89 let &cpo = s:keepcpo |
dd6c2497c997
Fix more 'cpo' issues in runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2249
diff
changeset
|
90 unlet s:keepcpo |