4

++vim とはどういう意味ですか?

たとえば、:e ++ff=dos. 私は理解eしていますが、そこにff=dosどのよう++に収まるかわかりません。

4

2 に答える 2

8

: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"に設定して同じファイルを再度編集することを意味します

于 2013-02-26T19:59:36.237 に答える
4

++ffなどのコマンドの値を強制するために使用されますenc

これを使用:h ++して、vim ヘルプで自分で調べてください。

于 2013-02-26T20:03:16.460 に答える