++
vim とはどういう意味ですか?
たとえば、:e ++ff=dos
. 私は理解e
していますが、そこにff=dos
どのよう++
に収まるかわかりません。
: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を"dos"に設定して同じファイルを再度編集することを意味します
++
ff
などのコマンドの値を強制するために使用されますenc
。
これを使用:h ++
して、vim ヘルプで自分で調べてください。