diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-06 08:57:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 08:57:53 +0200 |
commit | 4bf005e9fdfb57397475b2663a3651faa83886ff (patch) | |
tree | 2b690743460445cdfdcc215c0866ce2275e82290 /runtime/syntax/gdresource.vim | |
parent | 5b7213ad7fdac47345b7d9d9a008db23eed4d17c (diff) | |
download | rneovim-4bf005e9fdfb57397475b2663a3651faa83886ff.tar.gz rneovim-4bf005e9fdfb57397475b2663a3651faa83886ff.tar.bz2 rneovim-4bf005e9fdfb57397475b2663a3651faa83886ff.zip |
vim-patch:partial 0daafaa7d99e (#20083)
Update runtime files
https://github.com/vim/vim/commit/0daafaa7d99ef500f76b1b12f5fe8153e2fcaea0
skip vim9script ftplugin
create userfunc.txt from Neovim content (skip section 3, needs 9.0.0379)
Diffstat (limited to 'runtime/syntax/gdresource.vim')
-rw-r--r-- | runtime/syntax/gdresource.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/gdresource.vim b/runtime/syntax/gdresource.vim index eb500aa6c2..7e1a2513e2 100644 --- a/runtime/syntax/gdresource.vim +++ b/runtime/syntax/gdresource.vim @@ -2,12 +2,13 @@ " Language: gdresource " Maintainer: Maxim Kim <habamax@gmail.com> " Filenames: *.tscn, *.tres +" Website: https://github.com/habamax/vim-gdscript if exists("b:current_syntax") finish endif -let s:keepcpo= &cpo +let s:keepcpo = &cpo set cpo&vim syn match gdResourceNumber "\<0x\%(_\=\x\)\+\>" |