我遇到以下命令的问题:
autocmd FileType go autocmd BufWritePre <buffer> Fmt
它假设我的代码自动格式化,将其放在.vimrc
文件的末尾。
这就是我的.vimrc文件的样子:
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Avoid a name conflict with L9
Plugin 'user/L9', {'name': 'newL9'}
Plugin 'commentary.vim'
Plugin 'go.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax on
filetype plugin on
filetype indent on
"autocmd FileType go compiler go
autocmd FileType go autocmd BufWritePre <buffer> Fmt
然而,vim确实给我一个错误说:
Error Detected while processing BufWrite Auto commands for "<buffer=1>"
E492: Not an editor command: Fmt
我不知道什么是错的,特别是因为它提前工作了。
答案 0 :(得分:1)
您可能是指this定义的:Fmt
命令。
看起来该文件类型插件不是来源的。您可以使用:scriptnames
命令进行检查;它需要包含ftplugin/go/fmt.vim
。如果不是,那么您的'runtimepath'
选项会出现问题。
或者,您可以使用fatih/vim-go;它显然有一个自动格式化Go源代码的配置,因此您无需自己定义:autocmd
。