This plugin started out as a set of personal mappings, but there was enough enjoyment among those I shared it with for me to clean it up and release it. Features: While there are several HTML and XML scripts on vim.org, I have found none that share a significant amount of functionality with allml.vim. A huge variety of filetypes are supported: html, xhtml, wml, xml, xslt, xsd, jsp, php, aspperl,
* This script is an implementation of the Japanese SKK (Simple Kana to Kanji conversion program). * Get older versions from vimscript#1589. (Thanks to Noriaki Yagi for inventing this script!) * This plugin works under vim6, vim7. * Repository http://github.com/tyru/skk.vim/ REQUIREMENT: SKK-JISYO.[SML] Set two global variables if necessary. let skk_jisyo = "path to private dictionary" let skk_larg
MiniBufExpl This is a fork of Bindu Wavell's MiniBufExpl plugin for Vim. Federico Holgado started this fork and made lots of improvements. It is currently maintained by Techlive Zheng, the development has been moved to @techlivezheng's repo, only new version will be released to @fholgado's repo. The Story The reason why I took it upon myself to improve MiniBufExplorer is a matter of need. I am a U
I've been working on improving MiniBufExplorer, a plugin for Vim. The story: Why am I doing this? The reason why I took it upon myself to improve MiniBufExplorer is a matter of need. I am a User Interface designer who spends a lot of time writing front-end code. I recently found Vim and fell in love with it. During my search for the plugins that would help me the most, I came across MBE. I loved i
Vim から KeyRemap4MacBook の CLI を簡単に使えるプラグインを作った Mar 23rd, 2012 | Comments 概要 kr4mb.vim という KeyRemap4MacBook のコマンドラインインタフェース を Vim から簡単に使用するためのプラグインを作った。 基本的には、KeyRemap4MacBook のコマンドラインインタフェースをラップしているだけなので、キーリピートの設定などはできない。 インストール方法 次のコマンドで kr4mb.vim をインストールできる。 git clone git://github.com/emanon001/kr4mb.vim.git ~/.vim/bundle/kr4mb.vim/ echo set runtimepath+=~/.vim/bundle/kr4mb.vim/ >> ~/.vimrc しかし
問題 Vim で多数のファイルを編集することはよくあります。 例えば「foo」という名前の Vim プラグインを開発しているとしましょう。 すると autoload.foo.vim、doc/foo.txt、plugin/foo.vim などの特定のファイルを頻繁に編集することになります。 このような状況では 「doc/foo.txt を編集しようと思ったけれどどのウィンドウにも doc/foo.txt は表示されていない」 ということは起こりがちです。 そこで問題のファイルを明示的に開く必要がでてきます。 しかしファイルを開く方法は沢山あります。 あなたならどうやって問題のファイルを開きますか? :edit? :buffer? それともお気に入りのバッファ管理プラグイン? どれを選ぶにせよ、問題のファイルを開くためには何がしか追加情報を指定する必要があります。 例えば :edit を使うな
現在、vimエディタで表示している状態そのままを、HTMLファイル化するスクリプトです。 テキストを印刷する時や、他人へHTMLファイルとして公開する時などに利用できます。 (Windows, Mac) 概要 現在、vimエディタで表示している状態そのままを、HTMLファイル化するスクリプトです。 テキストを印刷する時や、他人へHTMLファイルとして公開する時などに利用できます。 Syntaxハイライト、および、行番号もそのまま、HTMLファイルで再現されます。 上の画像が変換前のテキスト、 下の画像が、このスクリプトでHTML化し、Webブラウザで表示したものです。 見ての通り、エディタ上での見た目を極力保っています。 ↑ 変換前のテキスト ↓ 上のテキストをHTML化したもの このスクリプトは、vim6であればデフォルトで添付されています。
I can't see the fancy symbols, what's wrong? Make sure that you have let g:Powerline_symbols = 'fancy' in your vimrc file. The settings may be loaded too late if you have this in gvimrc, so always put this in your vimrc. Clear the cache using :PowerlineClearCache and restart vim. Make sure that you've configured gvim or your terminal emulator to use a patched font. Make sure that vim is compiled w
Syntastic is a syntax checking plugin for Vim created by Martin Grenfell. It runs files through external syntax checkers and displays any resulting errors to the user. This can be done on demand, or automatically as files are saved. If syntax errors are detected, the user is notified and is happy because they didn't have to compile their code or execute their script to find them. At the time of th
この記事は、Vim Advent Calendar 2011の記事です。欠番が出そうだったので、勝手ながら割り込ませて頂きます。 Vimを使って開発をする際、リポジトリ内のファイルにどうやってアクセスしていますか?NERDTree?vimshell?unite.vim?FuzzyFinder? 色んな方法があるかと思います。ただこれらは若干古かったりニュアンスが異なっていたり、物によっては開発に向かない物もあります。単純にファイルを選択するのであれば、それで事足りるでしょう。しかしながら本当に開きたいファイルを最短の方法で選ぶには、これまでの方法では時に無駄であったり、余計なお世話だったりもしました。 僕はバッファセレクタやファイルセレクタというのは使わない方なのですが、ちょっと前にこれを見つけて「おっ...よさげなインタフェース」と思った物があったので紹介しようと思います。 ctrlp.
TVO (The Vim Outliner) is my solution for text outlining in Vim. It works a lot like Word's outline support, but is much more vim-compatible. It has syntax highlighting, embedded text blocks, shortcut mappings using both LocalLeader and arrow keys, and works reasonably well with Vim Easy. There is a toolbar that will be familiar to you if you've used Word's outliner. You can extract just text, or
これまでvimスクリプトをインストールするには、vim onlineでダウンロードして、書いてあるインストール手順に従って、時にはそのまま、時にはzipを解凍して.vim(windowsならvimfiles)に自前でコピーするのが一般的でした。おそらく自動化されている方もいるかもしれませんが、特有のスクリプト専用の更新ツールくらいかと思います。 Perlを知っている方ならばCPAN、rubyを知っている方ならばgemにあたる物がvimには無かったんです。 配布物が統一されていない為、無理だろうな...とも思ってました。 が、そこに登場したのがVimana(Vim script manager)です。 Vimana(3) User Contributed Perl Documentation Vimana(3) NAME Vimana - Vim
This domain may be for sale!
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く