Calling :PlugUpdate for https://github.com/myitcv/govim results in PlugClean required message and the plugin not being updated.
The git tree within .vim/plugged/govim is clean.
What's probably significant however is that git clean is not:
$ git clean -x -f -d -n
Would remove cmd/govim/.bin/
This is entirely intentional; I use the .gitignore-d ./cmd/govim/.bin to store installed binaries in commit-sha-named subdirectories, e.g.:
$ find cmd/govim/.bin/
cmd/govim/.bin/
cmd/govim/.bin/c2d29936502f35e1cbd3b8c284eefab5b42fb28d
cmd/govim/.bin/c2d29936502f35e1cbd3b8c284eefab5b42fb28d/gopls
cmd/govim/.bin/c2d29936502f35e1cbd3b8c284eefab5b42fb28d/govim
cmd/govim/.bin/bd60e5a5bf8c779cc9649fb6fa5022ed9a9f8431
cmd/govim/.bin/bd60e5a5bf8c779cc9649fb6fa5022ed9a9f8431/gopls
cmd/govim/.bin/bd60e5a5bf8c779cc9649fb6fa5022ed9a9f8431/govim
So I don't need to run clean here.
I've marked this as a bug because I think the plugin developer (me in this case!) probably knows what they are doing in such a situation.
But I probably don't have the context of understanding why PlugClean was created, and hence would appreciate thoughts/feedback.
VIM - Vi IMproved 8.1 (2018 May 18, compiled Apr 4 2019 12:59:10)
Included patches: 1-1103
Compiled by myitcv@myitcv
Huge version with GTK2 GUI. Features included (+) or not (-):
+acl ++builtin_terms +cmdline_info +diff -farsi -hangul_input +libcall +modify_fname -mouse_sysmouse +packages -python3 +startuptime +termguicolors +toolbar +vreplace +xpm
+arabic +byte_offset +comments +digraphs +file_in_path +iconv +linebreak +mouse +mouse_urxvt +path_extra +quickfix +statusline +terminal +user_commands +wildignore +xsmp_interact
+autocmd +channel +conceal +dnd +find_in_path +insert_expand +lispindent +mouseshape +mouse_xterm -perl +reltime -sun_workshop +terminfo +vartabs +wildmenu +xterm_clipboard
+autochdir +cindent +cryptv -ebcdic +float +job +listcmds +mouse_dec +multi_byte +persistent_undo +rightleft +syntax +termresponse +vertsplit +windows -xterm_save
-autoservername +clientserver +cscope +emacs_tags +folding +jumplist +localmap -mouse_gpm +multi_lang +postscript -ruby +tag_binary +textobjects +virtualedit +writebackup
+balloon_eval +clipboard +cursorbind +eval -footer +keymap +lua -mouse_jsbterm -mzscheme +printer +scrollbind -tag_old_static +textprop +visual +X11
+balloon_eval_term +cmdline_compl +cursorshape +ex_extra +fork() +lambda +menu +mouse_netterm -netbeans_intg +profile +signs -tag_any_white +timers +visualextra -xfontset
+browse +cmdline_hist +dialog_con_gui +extra_search +gettext +langmap +mksession +mouse_sgr +num64 +python +smartindent -tcl +title +viminfo +xim
system vimrc file: "$VIM/vimrc"
user vimrc file: "$HOME/.vimrc"
2nd user vimrc file: "~/.vim/vimrc"
user exrc file: "$HOME/.exrc"
system gvimrc file: "$VIM/gvimrc"
user gvimrc file: "$HOME/.gvimrc"
2nd user gvimrc file: "~/.vim/gvimrc"
defaults file: "$VIMRUNTIME/defaults.vim"
system menu file: "$VIMRUNTIME/menu.vim"
fall-back for $VIM: "/home/myitcv/usr/vim/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr
/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Linking: gcc -L/usr/local/lib -Wl,--as-needed -o vim -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfontconfig -lfreetype -lSM -lICE -lXpm -lXt -lX11 -lXdmcp -lSM -lICE -lm -ltinfo -lnsl -ldl -L/usr/lib/x86_64-linu
x-gnu -lluajit-5.1 -L/home/myitcv/.pythons/2.7.15/lib/python2.7/config -lpython2.7 -lpthread -ldl -lutil -lm -Xlinker -export-dynamic
Calling
:PlugUpdatefor https://github.com/myitcv/govim results inPlugClean requiredmessage and the plugin not being updated.The git tree within
.vim/plugged/govimis clean.What's probably significant however is that
git cleanis not:This is entirely intentional; I use the
.gitignore-d./cmd/govim/.binto store installed binaries in commit-sha-named subdirectories, e.g.:So I don't need to run clean here.
I've marked this as a bug because I think the plugin developer (me in this case!) probably knows what they are doing in such a situation.
But I probably don't have the context of understanding why
PlugCleanwas created, and hence would appreciate thoughts/feedback.