파이썬 용 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
.
- 최신 버전의 vim이 있는지 확인하고 동등하게 실행하십시오.
sudo apt-get install vim
.vimrc
지침에 따라 파일 수정echo "syntax on" >> ~/.vimrc
- 로 파일을 엽니 다
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
'UFO ET IT' 카테고리의 다른 글
생성자에서 const 필드를 초기화하는 방법은 무엇입니까? (0) | 2020.11.17 |
---|---|
Python의 새 스타일 속성으로 '속성을 설정할 수 없습니다' (0) | 2020.11.17 |
UTF-8 (또는 최소한 독일어 움라우트)을 사용하는 Latex의 리스팅 (0) | 2020.11.16 |
MSBuild 스크립트에서 현재 디렉터리를 얻으려면 어떻게해야합니까? (0) | 2020.11.16 |
최소한 HTTP 요청에 필요한 것은 무엇입니까? (0) | 2020.11.16 |