From 55d4f3c006689945599589a90036923b1752754f Mon Sep 17 00:00:00 2001 From: "Wu, Zhenyu" Date: Sat, 13 Apr 2024 18:25:38 +0200 Subject: patch 9.1.0317: filetype: matplotlibrc files are not recognized Problem: filetype: matplotlibrc files are not recognized Solution: Detect 'matplotlibrc' file as yaml filetype (Wu, Zhenyu) See: https://matplotlib.org/stable/users/explain/customizing.html#the-matplotlibrc-file closes: #14501 Signed-off-by: Wu, Zhenyu Signed-off-by: Christian Brabandt --- runtime/filetype.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/filetype.vim') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 79a9b481fd..96ecb1aaae 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -425,8 +425,8 @@ au BufNewFile,BufRead .clang-format setf yaml " Clang-tidy au BufNewFile,BufRead .clang-tidy setf yaml -" Matplotlib style -au BufNewFile,BufRead *.mplstyle setf yaml +" Matplotlib +au BufNewFile,BufRead *.mplstyle,matplotlibrc setf yaml " Clean au BufNewFile,BufRead *.dcl,*.icl setf clean -- cgit v1.2.3