[20191130]vim modeline.txt
[20191130]vim modeline.txt
--//今天編輯檔案,發現每次開啟老是報錯,提示類似如下:
處理 modelines 時發生錯誤:
第 3 行:
E518: 未知的選項: this
$ cat a.txt
for ex: this is a test
--//輸入:help modeline,看到如下:
There are two forms of modelines. The first form:
[text]{white}{vi:|vim:|ex:}[white]{options}
[text] any text or empty
{white} at least one blank character (<Space> or <Tab>)
{vi:|vim:|ex:} the string "vi:", "vim:" or "ex:"
[white] optional white space
{options} a list of option settings, separated with white space or ':',
where each part between ':' is the argument for a ":set"
command (can be empty)
Example:
vi:noai:sw=3 ts=6 ~
The second form (this is compatible with some versions of Vi):
[text]{white}{vi:|vim:|ex:}[white]se[t] {options}:[text]
[text] any text or empty
{white} at least one blank character (<Space> or <Tab>)
{vi:|vim:|ex:} the string "vi:", "vim:" or "ex:"
[white] optional white space
se[t] the string "set " or "se " (note the space)
{options} a list of options, separated with white space, which is the
argument for a ":set" command
: a colon
[text] any text or empty
Example:
/* vim: set ai tw=75: */
The white space before {vi:|vim:|ex:} is required. This minimizes the chance
that a normal word like "lex:" is caught. There is one exception: "vi:" and
"vim:" can also be at the start of the line (for compatibility with version
3.0). Using "ex:" at the start of the line will be ignored (this could be
short for "example:").
--//原來這種模式控制檔案的顯示模式以及設定,做一個記錄.一般在開頭以及結尾的5行.
--//一些開發會使用一些特殊的定義.
--//假設定義如下,開啟檔案就會在列10,20,40出現彩色的豎線
/* vim: set colorcolumn=10,20,40: */
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2666408/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- №20191130簡易操作1~7(今期:上=下=0)
- Vim
- [20210106]vim syntax txt.vim.txt
- vim工具
- vim使用
- vim 分屏
- vim操作
- vim命令
- Vim 使用
- [20220316]完善vim gdb.vim外掛.txt
- VIM 進階 —— 《VIM 8 文字處理實戰》
- [20200424]vim visSum.vim合計外掛.txt
- 如何安裝最新的Vim8.2與Vim外掛管理器vim-plug
- Vim筆記筆記
- vim 的 viewView
- vim快捷鍵
- vim搜尋
- VIM 命令大全
- vim配置思路
- linux--vimLinux
- VIM操作技巧
- 編譯VIM編譯
- Vim命令合集
- vim常用操作
- Vim 命令合集
- vim外掛管理器,我選vim-pluginPlugin
- Vim-plug:極簡 Vim 外掛管理器
- Vim初心者に捧ぐ実踐的入門 #Vim
- Vim游標移動命令彙總-Vim入門教程
- linux之vim命令Linux
- vim常用快捷鍵
- vim基礎使用
- vim編輯器
- docker 安裝vimDocker
- centeros如何退出vim?ROS
- VIM 命令總結
- VIM 常用插入命令
- 《A Byte of Vim》書評