diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2022-11-19 10:31:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-19 10:31:51 +0000 |
commit | 7c57f06b63f7c4e3b62a765b7b7814ef017a602d (patch) | |
tree | e78b4afb39f054bb32e283e1c019fdea22117b55 /runtime/ftplugin | |
parent | af204dd0f193c3cd3154156c9f9fd40199b840c6 (diff) | |
download | rneovim-7c57f06b63f7c4e3b62a765b7b7814ef017a602d.tar.gz rneovim-7c57f06b63f7c4e3b62a765b7b7814ef017a602d.tar.bz2 rneovim-7c57f06b63f7c4e3b62a765b7b7814ef017a602d.zip |
vim-patch:partial:d13166e788fc (#21109)
Update runtime files
https://github.com/vim/vim/commit/d13166e788fcaef59ec65c20b46ca4be16625669
- Skip E1309-1311 (not ported).
- Skip `:echowindow` changes (not ported).
- Skip termdebug winbar doc changes (not fully ported).
- Port missing `g:termdebug_config.{wide,use_prompt}` changes from v8.2.5010.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/lua.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/lua.vim b/runtime/ftplugin/lua.vim index c28b8aecf8..c6ce4a0615 100644 --- a/runtime/ftplugin/lua.vim +++ b/runtime/ftplugin/lua.vim @@ -4,7 +4,7 @@ " Previous Maintainer: Max Ischenko <mfi@ukr.net> " Contributor: Dorai Sitaram <ds26@gte.com> " C.D. MacEachern <craig.daniel.maceachern@gmail.com> -" Last Change: 2022 Oct 15 +" Last Change: 2022 Nov 16 if exists("b:did_ftplugin") finish @@ -21,7 +21,7 @@ setlocal formatoptions-=t formatoptions+=croql let &l:define = '\<function\|\<local\%(\s\+function\)\=' " TODO: handle init.lua -setlocal includeexpr=substitute(v:fname,'\\.','/','g') +setlocal includeexpr=substitute(v:fname,'\.','/','g') setlocal suffixesadd=.lua let b:undo_ftplugin = "setlocal cms< com< def< fo< inex< sua<" |