ubuntu14.04 - vim配置疑問
天蓬老师
天蓬老师 2017-05-16 16:36:28
0
4
643

在ubuntu14.04下,用的root使用者操作,在家目錄下沒有 ~/.vimrc文件,因此修改/etc/vim/vimrc文件。
沒修改之前 source vimrc即出現錯誤。


請問這是什麼問題。
$ cat vimrc

" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
" the call to :runtime you can find below. If you wish to change any of those
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
" will be overwritten everytime an upgrade of the vim packages is performed.
" It is recommended to make after vim since it alters
" the value of the 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
runtime! debian。

" Uncomment the next line to make Vim more Vi-compatible

" NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous
" options, so any other options should be set AF set 'compatible'.
"set compatible

" Vim5 and later versions support syntax highlighting. Uncommenting the next

" line enables syntax highlighting by default.
if has("syntax")
syntax on
endifif
#endif

" If using a dark background within the editing area and syntax highlighting

" turn on this option as well
"set background=dark

" Uncomment the following to have Vim jump to the last position when

" reopening a file
"if has("autocmd")
" au BufReadPost * if line("'"") > ; 1 && line("'"") <= line("$") | exe "normal! g'"" | endif
"endif

" Uncomment the following to have Vim load indentation rules and plugins

" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif

" The following are commented out as they cause vim to behave a lot

" differently from regular Vi. They are highly recommended though.
"set showcmd " Show (partial) command in status line.
"set showmatch " Show matching brackets.
"set ignorecase " Do case insensitive matching
"set smartcase " Do smart case matching
"set incsearch " Incremental search
"set autowrite " Automatically save beforeefore commands like :next and :make
"set hidden " Hide buffers when they are abandoned
"set mouse=a " Enable mouse usage (all modes)

" Source a global configuration file if available

if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif

請問這裡面有什麼問題嗎?

我現在需要加一個PHP不全的功能。
echo “autocmd FileType php set omnifunc=phpcomplete#CompletePHP”>>vimrc
source vimrc
現在出現了這個錯誤,是什麼問題呢。

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回覆(4)
PHPzhong

source是用來設定目前shell環境的,vim不能用source指令。 vim下次啟動後會自動讀取vimrc,並不需要source。

~/.vimrc不存在可以用touch ~/.vimrc來創建,vim啟動的時候會自動去讀取它。

伊谢尔伦

雷雷

给我你的怀抱

第一次看到在shell裡source vimrc
你要做的是在vim里 :source vimrc

迷茫

沒事別root

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!