From 9013afc029eb9220f06ff0a9a773143a2616ea81 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 1 Mar 2024 12:38:28 +0900 Subject: [PATCH] Don't use silent! --- autoload/dpp/source.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autoload/dpp/source.vim b/autoload/dpp/source.vim index 8546d09..0c9068f 100644 --- a/autoload/dpp/source.vim +++ b/autoload/dpp/source.vim @@ -107,8 +107,7 @@ function dpp#source#_source(plugins, function_prefix) abort if (is_reset || filetype_before !=# filetype_after) && &l:filetype !=# '' " Recall FileType autocmd - " NOTE: Use silent! because ftplugins may be broken. - silent! let &l:filetype = &l:filetype + let &l:filetype = &l:filetype endif if !has('vim_starting')