Skip to content

Commit

Permalink
πŸ› Fix post-update hooks for the plugins related Vim commands
Browse files Browse the repository at this point in the history
  • Loading branch information
alrra committed Dec 22, 2023
1 parent 07845bf commit 3018dfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vim/vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,9 @@ silent! packadd webapi-vim
" Define custom commands for managing plugins.

command! PluginsClean call InitPlugins() | call minpac#clean()
command! PluginsSetup call InitPlugins() | call minpac#update('', { 'do': 'quit! | quit!' })
command! PluginsSetup call InitPlugins() | call minpac#update('', { 'do': 'qall' })
command! PluginsStatus call InitPlugins() | call minpac#status()
command! PluginsUpdate call InitPlugins() | call minpac#update('', { 'do': 'call minpac#status() | quit! | quit!' })
command! PluginsUpdate call InitPlugins() | call minpac#update('', { 'do': 'call minpac#status() | qall' })

" ----------------------------------------------------------------------
" | Plugins - Emmet |
Expand Down

0 comments on commit 3018dfa

Please sign in to comment.