From 65185b8ddb304fb984e4236b79526a53a1ec2462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Feh=C3=A9r?= Date: Tue, 4 Jun 2024 15:20:12 +0200 Subject: [PATCH] fixup! WIP: feat: BobProject from log entry --- plugin/vim-bob.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin/vim-bob.vim b/plugin/vim-bob.vim index 623d2af..2c784cb 100644 --- a/plugin/vim-bob.vim +++ b/plugin/vim-bob.vim @@ -229,6 +229,9 @@ function! s:ParseProjectArgs(args) endif let g:bob_prefix = l:match[1] " parse directory + " Add a message because this can take a while so that the user + " does not experience just a hanging editor. + echo "Initializing Bob environment ..." call s:Init(expand("%:p:h")) " parse configuration let l:line = getline(l:line_nr + 2)