]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/pack/stargrave/start/ctags/autoload/ctags.vim
v: are not required in vim9script
[dotfiles.git] / vim / .vim / pack / stargrave / start / ctags / autoload / ctags.vim
index 0119014c42c90c327305b9120aa729f0e466a463..29e1363f7eedd00b10018e6c4dea4b37a3329bf7 100644 (file)
@@ -26,12 +26,12 @@ export def Do(lang: string, onlyCmd: bool, verbose: bool)
         "--c++-kinds=+p",
         "--recurse",
     ]
-    if verbose == v:true | cmdline += ["--verbose"] | endif
+    if verbose == true | cmdline += ["--verbose"] | endif
     cmdline += ["-f", dst, src]
-    if onlyCmd == v:true
+    if onlyCmd == true
         echo join(cmdline, " ")
         return
     endif
     execute "!" .. join(cmdline, " ")
-    if verbose != v:true | redraw! | endif
+    if verbose != true | redraw! | endif
 enddef