gpt4 book ai didi

python - Python 的 .vimrc 配置

转载 作者:IT老高 更新时间:2023-10-28 20:51:32 25 4
gpt4 key购买 nike

我当前的 .vimrc 配置如下:

set nohlsearch
set ai
set bg=dark
set showmatch
highlight SpecialKey ctermfg=DarkGray
set listchars=tab:>-,trail:~
set list
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
set smartindent
syntax on
set listchars=tab:>-
set listchars+=trail:.
set ignorecase
set smartcase
map <C-t><up> :tabr<cr>
map <C-t><down> :tabl<cr>
map <C-t><left> :tabp<cr>
map <C-t><right> :tabn<cr>

但是,当我编写python脚本时,当我按下“ENTER”时,它将转到下一行的BEGINNING。我要添加什么以便它会自动为我添加标签?

最佳答案

试试这个:

filetype indent on
filetype on
filetype plugin on

我主要做 Python 编程,这是我的 vimrc 首当其冲

set nobackup
set nowritebackup
set noswapfile
set lines=40
set columns=80
set tabstop=4
set shiftwidth=4
set softtabstop=4
set autoindent
set smarttab
filetype indent on
filetype on
filetype plugin on

关于python - Python 的 .vimrc 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1523482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com