Mercurial > vim
annotate runtime/ftplugin/matlab.vim @ 26356:0884f2be6c2a v8.2.3709
patch 8.2.3709: Vim9: backtick expression expanded when not desired
Commit: https://github.com/vim/vim/commit/fad2742d538123abb9b384a053fd581f2acf6bb0
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 30 21:58:19 2021 +0000
patch 8.2.3709: Vim9: backtick expression expanded when not desired
Problem: Vim9: backtick expression expanded when not desired.
Solution: Only expand a backtick expression for commands that expand their
argument. Remove a few outdated TODO comments.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 30 Nov 2021 23:00:04 +0100 |
parents | 11b656e74444 |
children |
rev | line source |
---|---|
626 | 1 " Vim filetype plugin file |
2 " Language: matlab | |
3 " Maintainer: Jake Wasserman <jwasserman at gmail dot com> | |
25773 | 4 " Update By: Gabriel Dupras |
5 " Last Change: 2021 Aug 30 | |
6476 | 6 |
7 " Contributors: | |
8 " Charles Campbell | |
626 | 9 |
856 | 10 if exists("b:did_ftplugin") |
11 finish | |
626 | 12 endif |
13 let b:did_ftplugin = 1 | |
14 | |
15 let s:save_cpo = &cpo | |
16 set cpo-=C | |
17 | |
18 if exists("loaded_matchit") | |
25773 | 19 let s:conditionalEnd = '\%(\%(^\|;\)\s*\)\@<=end\>' |
6476 | 20 let b:match_words= |
25773 | 21 \ '\<\%(if\|switch\|for\|while\|try\)\>:\<\%(elseif\|case\|break\|continue\|else\|otherwise\|catch\)\>:' . s:conditionalEnd . ',' . |
6476 | 22 \ '\<function\>:\<return\>:\<endfunction\>' |
23 unlet s:conditionalEnd | |
626 | 24 endif |
25 | |
26 setlocal suffixesadd=.m | |
27 setlocal suffixes+=.asv | |
18186 | 28 setlocal commentstring=%\ %s |
626 | 29 |
18186 | 30 let b:undo_ftplugin = "setlocal suffixesadd< suffixes< commentstring< " |
626 | 31 \ . "| unlet! b:match_words" |
32 | |
33 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
856
diff
changeset
|
34 unlet s:save_cpo |