From 034457333f1749b8c3e6e128b1b59c0d380d862d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 20 Sep 2015 23:50:28 +0900 Subject: [PATCH] [BTags] Capitalize error message --- autoload/fzf/vim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index 75f3ec0..9a3c42d 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -379,7 +379,7 @@ function! s:btags_source() \ 'ctags -f - --sort=no --excmd=number --language-force=%s %s', \ &filetype, expand('%:S'))), "\n"), 'split(v:val, "\t")') if v:shell_error - throw 'failed to extract tags' + throw 'Failed to extract tags' endif return map(s:align_lists(lines), 'join(v:val, "\t")') endfunction