From 44ba053b7c34ec074cb256d54003b258e389876e Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Fri, 23 Apr 2021 21:17:50 +0300 Subject: [PATCH] [nvim] correctly highlight class names in declarations --- nvim/colors/dotfiles.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/colors/dotfiles.vim b/nvim/colors/dotfiles.vim index f6dcc2b..4c137f3 100644 --- a/nvim/colors/dotfiles.vim +++ b/nvim/colors/dotfiles.vim @@ -375,8 +375,9 @@ " }}} " Python {{{ - hi! link pythonBuiltinType Type - hi! link pythonExClass Type + hi! link pythonClass Type + hi! link pythonBuiltinType pythonClass + hi! link pythonExClass pythonClass hi! link pythonBuiltinObj pythonFunction hi! link pythonClassVar Variable " }}}