gpt4 book ai didi

Vim 自动命令错误

转载 作者:行者123 更新时间:2023-12-02 17:27:05 25 4
gpt4 key购买 nike

我有这个脚本可以在加载 Python 文件时设置变量

au BufNewFile,BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix

当我加载 Python 文件时出现此错误:

Error detected while processing BufRead Auto commands for "*.py":
E518: Unknown option: set

最佳答案

这应该有效:

au BufNewFile,BufRead *.test set tabstop=4 
\softtabstop=4
\shiftwidth=4
\textwidth=790
\expandtab
\autoindent
\fileformat=unix

au BufNewFile,BufRead *.test set tabstop=4|set softtabstop=4|set shiftwidth=4|set textwidth=79 |set expandtab|set autoindent|set fileformat=unix

au BufNewFile,BufRead *.test set tabstop=4 softtabstop=4 shiftwidth=4  textwidth=79 expandtab autoindent fileformat=unix

关于Vim 自动命令错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37868969/

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