gpt4 book ai didi

python - 处理 "*.py"的 BufRead 自动命令时检测到错误

转载 作者:太空狗 更新时间:2023-10-29 17:41:05 28 4
gpt4 key购买 nike

我的 vim 配置有问题...

打开 python (.py) 文件时出现此错误:

Error detected while processing BufRead Auto commands for "*.py":
E20: Mark not set

打开例如 html (.html) 或 ruby​​ (.rb) 文件时,不会发生错误。

这是我的 vim 配置。插件都安装好了。

""" VUNDLE """
set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'

" plugins
Plugin 'valloric/youcompleteme'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'shawncplus/phpcomplete.vim'
Plugin 'quramy/tsuquyomi'
"Plugin 'Shougo/vimproc.vim'
Plugin 'leafgarland/typescript-vim'

call vundle#end()
filetype plugin indent on



""" CONFIG """
set history=200 "command history

set so=7 "add 7 lines when moving up/down

set hlsearch "highlight search results
set showmatch "highlight matching brackets

set ruler
set relativenumber

syntax enable
set encoding=utf8
set ffs=unix,dos,mac "unix as standard file type

set expandtab
set smarttab
set shiftwidth=4
set tabstop=4

set ai "Auto indent
set si "Smart indent
set nowrap "Wrap lines

set laststatus=2

" whitespace
set list
set listchars=tab:>-,trail:~,extends:>,precedes:<

set nobackup
set nowb
set noswapfile

" NERDTree
map <C-n> :NERDTreeToggle<CR>
"autocmd vimenter * NERDTree

" NERDTreeTabs
let NERDTreeShowHidden=1
let g:nerdtree_tabs_open_on_console_startup=1
map <Leader>n <plug>NERDTreeTabsToggle<CR>

au FileType php setl ofu=phpcomplete#CompletePHP
au FileType ruby,eruby setl ofu=rubycomplete#Complete
au FileType html,xhtml setl ofu=htmlcomplete#CompleteTags
au FileType css setl ofu=csscomplete#CompleteCSS
au FileType python setl ofu=pythoncomplete#Complete

au BufNewFile,BufRead *.py, *.php, *.rb, *.html, *.js, *.ts, *.md
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix


au BufNewFile,BufRead *.css, *.scss, *.json
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix

let g:ycm_python_binary_path = 'python'

if !exists("g:ycm_semantic_triggers")
let g:ycm_semantic_triggers = {}
endif

" TypeScript plugin tsuquyomi
let g:ycm_semantic_triggers['typescript'] = ['.']
let g:tsuquyomi_import_curly_spacing = 0
let g:tsuquyomi_single_quote_import = 1
map <C-i> :TsuImport<CR>

hi Pmenu ctermbg=green

我确实将带有“BufNewFile”的行更改为不同的方式(1 个 set 命令,多个 set 命令,带管道,不带管道,带反斜杠,不带反斜杠,等),但没有任何帮助。

有谁知道问题到底是什么?

最佳答案

很难注意到(我不得不看两次),但问题是 :autocmd 定义中模式之间的空格:

语法是

:au[tocmd] [group] {event} {pat} [nested] {cmd}

:help {pat} 表明各个模式之间不能有空格。

例子

:au BufNewFile,BufRead *.py, *.php, *.rb, *.html, *.js, *.ts, *.md echomsg 'test'

:au BufRead *.py
--- Auto-Commands ---
filetypedetect BufRead
*.py setf python
BufRead
*.py *.php, *.rb, *.html, *.js, *.ts, *.md echomsg 'test'

如您所见,Vim 仅识别第一个 模式,并将所有后续模式视为 (Ex) 命令!

:* 命令执行寄存器的内容(可能是垃圾),这会导致您看到的 E20 错误(可能是因为有 ' 寄存器中的字符)。

修复

删除空格。正如我已经评论过的,您也可以跳过为每个选项重复 :set 命令。

:au BufNewFile,BufRead *.py,*.php,*.rb,*.html,*.js,*.ts,*.md ...

关于python - 处理 "*.py"的 BufRead 自动命令时检测到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45416839/

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