<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Ken's blog &#187; Vim</title>
	<atom:link href="http://blog.sibrof.net/ken/tag/vim/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sibrof.net/ken</link>
	<description>The keyword is unisexy.</description>
	<lastBuildDate>Tue, 23 Mar 2010 09:53:02 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://blog.sibrof.net/ken/tag/vim/feed/" />
		<item>
		<title>Vimでコンパイル</title>
		<link>http://blog.sibrof.net/ken/2009/03/14/1525/</link>
		<comments>http://blog.sibrof.net/ken/2009/03/14/1525/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 12:52:36 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[Vim]]></category>
		<category><![CDATA[コンパイル]]></category>

		<guid isPermaLink="false">http://blog.sibrof.net/ken/?p=1525</guid>
		<description><![CDATA[Vimで編集中のコードをコンパイルして実行したり &#8211; Tech Labo http://d.hatena.ne.jp/techlabo/20080330/1206866935 Vimでコンパイル。 .vimr [...]]]></description>
			<content:encoded><![CDATA[<p>Vimで編集中のコードをコンパイルして実行したり &#8211; Tech Labo<br />
<a href="http://d.hatena.ne.jp/techlabo/20080330/1206866935">http://d.hatena.ne.jp/techlabo/20080330/1206866935</a><br />
Vimでコンパイル。<br />
.vimrcに以下を書いておけばよい。</p>
<blockquote><p>command! Python call s:Python()<br />
nmap <F5> <img src='http://blog.sibrof.net/ken/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ython<CR><br />
function! s:Python()<br />
    :w<br />
    :!python %<br />
endfunction
</p></blockquote>
<p>なるほど。</p>
<p>上記ページにはCやPerlのもありました。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sibrof.net/ken/2009/03/14/1525/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://blog.sibrof.net/ken/2009/03/14/1525/" />
	</item>
		<item>
		<title>Vimの簡易設定</title>
		<link>http://blog.sibrof.net/ken/2009/03/14/1513/</link>
		<comments>http://blog.sibrof.net/ken/2009/03/14/1513/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 18:09:03 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://blog.sibrof.net/ken/?p=1513</guid>
		<description><![CDATA[Pythonのコードを書くにはこんな感じがよさそう。 Pythonに限らず、プラグインの対応状況からいくとPerlやRubyでも使えそう。 sudo aptitude install vim-full .vimrc se [...]]]></description>
			<content:encoded><![CDATA[<p>Pythonのコードを書くにはこんな感じがよさそう。<br />
Pythonに限らず、プラグインの対応状況からいくとPerlやRubyでも使えそう。</p>
<p>sudo aptitude install vim-full</p>
<p>.vimrc<br />
<code>set nu sw=4 ts=4 sts=4 hlsearch showmatch backspace=indent,eol,start<br />
let g:treeExplVertical=1</p>
<p>autocmd BufRead,BufNewFile *.py syntax on<br />
autocmd BufRead,BufNewFile *.py set ai sw=2 ts=2 sts=2<br />
autocmd BufRead,BufNewFile *.py imap <Nul> <C-p><br />
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class<br />
</code></p>
<p>autocomplpop.vim &#8211; vimグループ<br />
<a href="http://vim.g.hatena.ne.jp/keyword/autocomplpop.vim">http://vim.g.hatena.ne.jp/keyword/autocomplpop.vim</a><br />
&#8220;.&#8221;(ドット)を打つと補完してくれます。</p>
<p>vtreeexplorer &#8211; tree based file explorer &#8211; the original : vim online<br />
<a href="http://www.vim.org/scripts/script.php?script_id=184">http://www.vim.org/scripts/script.php?script_id=184</a><br />
こっちはvimの左側にファイルをツリー表示してくれる。<br />
.vimrc内の&#8221;let g:treeExplVertical=1&#8243;はこのオプション。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sibrof.net/ken/2009/03/14/1513/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://blog.sibrof.net/ken/2009/03/14/1513/" />
	</item>
	</channel>
</rss>

