UFO ET IT

파이썬 용 Vim에서 구문 강조

ufoet 2020. 11. 17. 21:27
반응형

파이썬 용 Vim에서 구문 강조


파이썬 용 Vim 7에서 구문 강조를 어떻게 설정합니까?

고유 한 색상 체계와 코드 파일 유형에 대한 구문 강조를 설정하고 싶습니다.


vim에서 구문 강조 표시를 활성화하는 명령은입니다. vim :syntax on을 시작할 때마다 활성화되도록하려면 syntax on.vimrc 파일에 포함 행을 추가하기 만하면 됩니다.


python 용 vim에서 구문 강조 표시 (대상은 Ubuntu 12.10)

다음은 Ubuntu 12.10 용 Python에서 구문 강조 표시를 설정하는 방법에 대한 연습 입니다. 당신이 보는 것은 당신이 얻는 것입니다.

여기에 이미지 설명 입력

https://github.com/sentientmachine/Pretty-Vim-Python/

특정 사용자를 위해 vi 편집기에 색 구성표와 구문 강조 표시를 삽입하는 방법에 대해 알고 나면이를 사용자 정의 할 수 있습니다.

There are hundreds of fashionable color schemes here: https://github.com/morhetz/gruvbox

Pick one that you like. Then download the python.vim and foobarcolorscheme9000.vim files and put them in the right spot as defined here: https://alvinalexander.com/linux/vi-vim-editor-color-scheme-colorscheme Set the appropriate commands in the ~/.vimrc and logout login.

Page listing most useful and fashionable python Color schemes:

https://stackoverflow.com/a/11060884/445131

Then you could try programming in VimL script language yourself.

Learn to edit the code that causes vim syntax highlighting to work. Make it better than it ever was.

http://en.wikibooks.org/wiki/Learning_the_vi_Editor/Vim/VimL_Script_language


Put the line syntax on in your .vimrc.


  1. 최신 버전의 vim이 있는지 확인하고 동등하게 실행하십시오. sudo apt-get install vim
  2. .vimrc지침에 따라 파일 수정echo "syntax on" >> ~/.vimrc
  3. 로 파일을 엽니 다 vi app.py. 당신은 볼 것이다 구문 강조

여기에 이미지 설명 입력


* nix 시스템 (linux, macos) 또는 cygwin을 사용 중이고 이미 vim을 :set syntax설정했지만 파일 이름이 다음으로 끝나지 않는 경우 파일 .py의 첫 번째 줄에 shebang을 추가 할 수 있습니다.

#!/usr/bin/env python 

다음에 vim에서 파일을 열면 구문 강조 표시가 표시됩니다. 다른 파일 유형에서도 작동합니다. 인터프리터 이름 만 사용하면됩니다.(python, ruby, sh)

참고 URL : https://stackoverflow.com/questions/4746579/syntax-highlighting-in-vim-for-python

반응형