aboutsummaryrefslogtreecommitdiff
path: root/autoload/utils.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/utils.vim')
-rw-r--r--autoload/utils.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim
index b09b55d..9b4bb90 100644
--- a/autoload/utils.vim
+++ b/autoload/utils.vim
@@ -141,9 +141,7 @@ function! utils#Inside_git_repo() abort
if match(res, 'true') == -1
return v:false
else
- " Manually trigger a special user autocmd InGitRepo (to use it for
- " lazyloading of fugitive by packer.nvim).
- " See also https://github.com/wbthomason/packer.nvim/discussions/534.
+ " Manually trigger a special user autocmd InGitRepo (used lazyloading.
doautocmd User InGitRepo
return v:true
endif