vim外掛程式ZenCoding一些常用的操作

來源:互聯網
上載者:User
vim外掛程式ZenCoding一些常用的操作

相當的酷,記錄一些常用的操作

安裝很方便,不再像我以前使用的sparkup.vim得配置python環境了,可直接到http://github.com/mattn/zencoding-vim
下載zencoding.vim檔案放到vimfiles/plugin
.vim/plugin
目錄就OK了。

接下來介紹些使用方法(Copy自LazyHack的使用zen coding for vim快速編寫html代碼

  • 展開縮寫

輸入 div>p#foo$*3>a
這樣的縮寫,然後按 ctrl + y + ,
來展開(注意那個逗號),展開後它應該是這個樣子的

 <div>      <p id="foo1">          <a href=""></a>      </p>      <p id="foo2">          <a href=""></a>      </p>      <p id="foo3">          <a href=""></a>      </p>  </div>
  • 多行縮寫

輸入如下:

test1test2test3

然後進入行選擇模式,選中這三行按 ctrl + y + ,
,接著它會提示你要使用的tag名稱,TAG: 輸入 ‘ul>li*
會變成如下的樣子

<ul>    <li>test1</li>    <li>test2</li>    <li>test3</li></ul>

如果是輸入blockquote
,那麼會變成這樣

  <blockquote>      test1      test2      test3  </blockquote>
  • 跳轉到下一個標籤編輯位置

輸入ctrl + y + n
進入插入模式

  • 跳轉到上一個標籤編輯位置

輸入ctrl + y + N
進入插入模式

  • 更新標籤中圖片大小

假如有以下內容

<img src="foo.png" />

游標移動到img
標籤上,按下ctrl + y + i
該外掛程式會自動擷取foo.png的大小並插入寬高屬性
看起來像這個樣子

<img src="foo.png" width="32" height="48" />
  • 切換注釋

如有以下段

<div>    hello world</div>

游標移動到此段落,輸入ctrl + y + /
變成

<!-- <div>    hello world</div> -->

再次輸入則還原

  • 產生url串連

將游標移動到一個url上,如:

http://www.google.com/

輸入ctrl + y + a
它會自動擷取url頁面的標題並產生一個串連

<a href="http://www.google.com/"></a>

zencoding.vim更新十分頻繁,大家可以關注下。

VIM官方外掛程式地址:http://www.vim.org/scripts/script.php?script_id=2981

zencoding.vim在Github的地址:http://github.com/mattn/zencoding-vim

Zen Coding官方地址:http://code.google.com/p/zen-coding/

Zen Coding官方提供的速查手冊(PDF):http://zen-coding.googlecode.com/files/ZenCodingCheatSheet.pdf

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.