diff options
| author | Gregory Anders <greg@gpanders.com> | 2023-10-19 10:20:12 -0500 |
|---|---|---|
| committer | Gregory Anders <greg@gpanders.com> | 2023-10-19 10:20:55 -0500 |
| commit | e6d352d8d7d8a987d0bd9b2e13bfd395e1127c3e (patch) | |
| tree | 664a31c51f2a254e320b05ce30cfb3e2f4752d7d /runtime/ftplugin | |
| parent | 315c711700a87fe3fa546906ab39557ebba19baf (diff) | |
| download | rneovim-e6d352d8d7d8a987d0bd9b2e13bfd395e1127c3e.tar.gz rneovim-e6d352d8d7d8a987d0bd9b2e13bfd395e1127c3e.tar.bz2 rneovim-e6d352d8d7d8a987d0bd9b2e13bfd395e1127c3e.zip | |
vim-patch:e08bfef88bd0
runtime(zig): Update Zig runtime files (vim/vim#13388)
Update runtime files from upstream (https://github.com/zig/zig.vim) at
commit 54c216e5306a5c3878a60596aacb94dca8652ab9.
https://github.com/vim/vim/commit/e08bfef88bd05a9d27ee16c57cd10173e280f600
Co-authored-by: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Diffstat (limited to 'runtime/ftplugin')
| -rw-r--r-- | runtime/ftplugin/zig.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/zig.vim b/runtime/ftplugin/zig.vim index cfd7102b8d..291fe44b11 100644 --- a/runtime/ftplugin/zig.vim +++ b/runtime/ftplugin/zig.vim @@ -28,7 +28,7 @@ setlocal formatoptions-=t formatoptions+=croql setlocal suffixesadd=.zig,.zir if has('comments') - setlocal comments=:///,://!,://,:\\\\ + setlocal comments=:///,://!,:// setlocal commentstring=//\ %s endif @@ -53,7 +53,7 @@ endif unlet! s:tmp_cwd if exists('g:zig_std_dir') - let &l:path = &l:path . ',' . g:zig_std_dir + let &l:path = g:zig_std_dir . ',' . &l:path endif let b:undo_ftplugin = |