<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NICA &#187; vim</title>
	<atom:link href="http://nicaliu.info/tag/vim/feed/" rel="self" type="application/rss+xml" />
	<link>http://nicaliu.info</link>
	<description>【Nicholas, Nica &#38; Nix】接著是與 Nix 一起寫稿譯稿的日子 ~ 仍然繼續玩 Linux、OpenSource and Cloud....</description>
	<lastBuildDate>Sat, 17 Dec 2011 08:51:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>讓 xubuntu 下的 vi 變彩色</title>
		<link>http://nicaliu.info/2009/03/18/2085/</link>
		<comments>http://nicaliu.info/2009/03/18/2085/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 10:35:10 +0000</pubDate>
		<dc:creator>Nica</dc:creator>
				<category><![CDATA[【技術手札】筆記]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://nicaliu.info/?p=2085</guid>
		<description><![CDATA[譯者：Nica &#60; nicaliu at  gmail dot com &#62;
嗨…
我在唸書時就開始研究 shell 的程式設計，並用 VI 撰寫一些 script。我發現所有在 ubuntu 上使用 vi 的同事都很氣惱，似乎很羨慕他們使用 Fedora 10 的朋友，能輕鬆在彩色模式下使用 VI，彩色模式有助於找出語法的問題。有些朋友開始後悔裝了 Ubuntu 而不是 Fedora，甚至責怪我建議他們裝 Ubuntu。身為 Ubuntu 的粉絲，當然馬上就找了解決方案來解決這個小問題。我不接受有人嫌棄 Ubuntu !! 你要彩色的 VI 是嗎? 我這就給你!

1- 你得安裝 VIM &#8211; 也就是 &#8220;vi 改良版&#8221;，只要在 console 輸入以下程式碼即可：
sudo apt-get install vim
2- 安裝後，必須編輯檔案，去除參數的註解，作這件事必須轉換為 root 的權限，所以請輸入 su、填入 root 的密碼：
su
然後變更此檔模式為可寫入 (這麼一來你才可以變更此內容)
chmod +w /etc/vim/vimrc
如要註解掉 syntax on [...]]]></description>
		<wfw:commentRss>http://nicaliu.info/2009/03/18/2085/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim 的小玩意： tab 怎麼玩?</title>
		<link>http://nicaliu.info/2007/01/27/710/</link>
		<comments>http://nicaliu.info/2007/01/27/710/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 13:40:00 +0000</pubDate>
		<dc:creator>Nica</dc:creator>
				<category><![CDATA[【技術手札】筆記]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://nicaliu.info/2007/01/27/710/</guid>
		<description><![CDATA[
一次 vi 數個檔案來作編輯，預設 vim (也就是 vi) 同時可開 10 個 tab (這可以透過 set tabpagemax= 的方式設定，將它加大或減少)。
也就是說，當你想同時 vim 三個檔案 (例如 abc、cde、efg)，可以：
vim -p abc cde efg
執行了之後，vim 的視窗最上面會出現abc cde efg 這三個 tab，在 vim 的一般模式下，敲鍵盤 gt 就可以順序切換這三個
tab。假設你剛好在中間 cde 這個 tab，可以在指令模式 (前面有冒號那個) 下，輸入 :tabp 前進到上一個 tab，也就是
abc；而若一樣在 cde 下，輸入的是 :tabn，則切換至下一個 tab。
最方便的是 :tabdo 的功能。例如你想將這三篇文章裡的 quu-studio 全置換成 Quu-Studio，只要 :tabdo %s/quu-studio/Quu-Studio/g 就可以了!!
另外還有其它 :tab 相關的指令功能，看看參考來源就知道嚕。
參考來源：
http://applications.linux.com/article.pl?sid=07/01/11/2141259
]]></description>
		<wfw:commentRss>http://nicaliu.info/2007/01/27/710/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

