-
Notifications
You must be signed in to change notification settings - Fork 104
Closed
Labels
Description
Describe the bug
At vim startup, codefmt complains that I have maktaba version 0.0.1 installed, but I actually have 1.16.0 as evidenced by the addon-info.json in maktaba.
To Reproduce
Unfortunately, when I made the following minimal reproducer, it fails with a different error message; now maktaba complains that codefmt doesn't exist with Exception not caught: ERROR(NotFound): Plugin codefmt
. Minimal vimrc using Dein:
" Required:
set runtimepath+=~/vimscripts/dein/repos/github.com/Shougo/dein.vim
call dein#begin('~/vimscripts/dein', ['~/vimrc/plugins.vim'])
" Let dein manage dein
" Required:
call dein#add('Shougo/dein.vim')
call dein#add('google/vim-maktaba')
call dein#add('google/vim-codefmt')
" Required:
call dein#end()
let dein#enable_notification = 1
" Required:
filetype plugin indent on
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
OS (version)
Linux 5.4.0-62-generic #70-Ubuntu SMP Tue Jan 12 12:45:47 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux