From d59f1dd62b515d66c4c58ad826dc6221866292c3 Mon Sep 17 00:00:00 2001 From: olus2000 Date: Mon, 22 Aug 2022 15:30:48 +0200 Subject: [PATCH] Fix vocabulary swithcing commands --- misc/vim/plugin/factor.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/vim/plugin/factor.vim b/misc/vim/plugin/factor.vim index 832ffc311c..9df38dbf0f 100644 --- a/misc/vim/plugin/factor.vim +++ b/misc/vim/plugin/factor.vim @@ -24,9 +24,9 @@ command! -bar -bang -range=1 -nargs=1 -complete=customlist,factor#complete_vocab \ execute factor#go_to_vocab_command(,"edit",) command! -bar -bang -range=1 -nargs=1 -complete=customlist,factor#complete_vocab_glob NewFactorVocab \ execute factor#make_vocab_command(,"edit",) -command! FactorVocabImpl -bar :call GoToFactorVocabImpl() -command! FactorVocabDocs -bar :call GoToFactorVocabDocs() -command! FactorVocabTests -bar :call GoToFactorVocabTests() +command! -bar FactorVocabImpl :call GoToFactorVocabImpl() +command! -bar FactorVocabDocs :call GoToFactorVocabDocs() +command! -bar FactorVocabTests :call GoToFactorVocabTests() function! FactorFileBase() let filename = expand('%:r') -- 2.34.1