소스 검색

Add default italic style for type annotation

 * It is recommended to override it in colorschemes.
Joongi Kim 7 년 전
부모
커밋
f5284a836c
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      syntax/python.vim

+ 3
- 0
syntax/python.vim 파일 보기

@@ -631,6 +631,9 @@ if version >= 508 || !exists("did_python_syn_inits")
631 631
   HiLink pythonType             Special
632 632
 
633 633
   delcommand HiLink
634
+
635
+  " default style for custom highlight group (may be overriden in colors)
636
+  hi Optional gui=italic cterm=italic
634 637
 endif
635 638
 
636 639
 let b:current_syntax = "python"