2013-02-26 139 views
2

++在vim中的含義是什麼?例如,:e ++ff=dos。我明白eff=dos,只是不知道如何++適合那裏。++在vim命令中

回答

7

:h ++opt查看詳細

The [++opt] argument can be used to force the value of 'fileformat', 
'fileencoding' or 'binary' to a value for one command, and to specify the 
behavior for bad characters. The form is: > 
    ++{optname} 
Or: > 
    ++{optname}={value} 

Where {optname} is one of:  *++ff* *++enc* *++bin* *++nobin* *++edit* 
    ff  or fileformat overrides 'fileformat' 
    enc or encoding  overrides 'fileencoding' 
    bin or binary  sets 'binary' 
    nobin or nobinary  resets 'binary' 
    bad    specifies behavior for bad characters 
    edit   for |:read| only: keep option values as if editing 
       a file 

在你的問題的CMD:

:e ++ff=dos 

手段與FILEFORMAT設置再次編輯同一個文件到 「待辦事項」

3

++用於力值用於像ffenc等命令。

使用:h ++自己在vim幫助中查看這個!

+0

非常感謝!出於某種原因,我認爲':h'不接受非單詞字符,並且沒有想到要嘗試。 – tau 2013-02-26 20:04:16

+0

還有':helpgrep' ...如果這也行不通,只是簡單的'grep -i -r -color = auto'searchterm'' vim的手冊文件夾...:D – sjas 2013-02-26 20:05:51

+0

tau,你安裝了模糊搜索器?它可以搜索vim的幫助。 – Kent 2013-02-26 20:06:15