From 8e4536384b73bcd3f90e38e06ff869a924307c5f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 29 Sep 2015 11:48:45 +0900 Subject: [PATCH] [BTags] Remove --language-force option Close #17 --- autoload/fzf/vim.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index 5faaab2..5e2c6f8 100644 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -380,8 +380,8 @@ endfunction " ------------------------------------------------------------------ function! s:btags_source() let lines = map(split(system(printf( - \ 'ctags -f - --sort=no --excmd=number --language-force=%s %s', - \ &filetype, expand('%:S'))), "\n"), 'split(v:val, "\t")') + \ 'ctags -f - --sort=no --excmd=number %s', + \ expand('%:S'))), "\n"), 'split(v:val, "\t")') if v:shell_error throw 'Failed to extract tags' endif