From acd0728181146c730c404d7d8c45e06bbb535258 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Sun, 12 Apr 2015 23:52:34 -0400 Subject: [PATCH] misc/vim: inform the user when no results are found MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- misc/vim/plugin/nit.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/vim/plugin/nit.vim b/misc/vim/plugin/nit.vim index 2917756..86d5e45 100644 --- a/misc/vim/plugin/nit.vim +++ b/misc/vim/plugin/nit.vim @@ -318,6 +318,7 @@ fun Nitdoc(...) " Found no doc, give up if empty(docs) || !(join(docs, '') =~ '\w') + echo 'Nitdoc found nothing for "' . word . '"' return endif -- 1.7.9.5