diff options
| author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-10-19 14:30:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-19 14:30:19 -0500 |
| commit | 2c9d4ef45908a933e8a22233733a1482ebd6be31 (patch) | |
| tree | 3a7ddeb2ecae334f61f70bc7116233d64cead058 /runtime/ftplugin | |
| parent | 315c711700a87fe3fa546906ab39557ebba19baf (diff) | |
| parent | 3ea13bca14e7d89518f502fc42ef341f9eaf7f08 (diff) | |
| download | rneovim-2c9d4ef45908a933e8a22233733a1482ebd6be31.tar.gz rneovim-2c9d4ef45908a933e8a22233733a1482ebd6be31.tar.bz2 rneovim-2c9d4ef45908a933e8a22233733a1482ebd6be31.zip | |
Merge pull request #25717 from gpanders/vim-e08bfef88bd0
vim-patch:e08bfef88bd0, vim-patch:9.0.2053
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 = |