Skip to content

Instantly share code, notes, and snippets.

@wlt
Created May 28, 2013 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wlt/5659802 to your computer and use it in GitHub Desktop.
Save wlt/5659802 to your computer and use it in GitHub Desktop.
Vimperatorのステータスバーに何か表示するサンプル
" ステータスバーにページタイトル表示
autocmd LocationChange .* -js statusline.updateField("title", "{" + buffer.title + "}")
autocmd DOMLoad .* -js args.url == buffer.URL && statusline.updateField("title", "{" + buffer.title + "}")
set status^=title
" ステータスバーにタブグループ名表示
autocmd LocationChange .* -js setTimeout(function () { statusline.updateField("tabgrouptitle", "<" + tabGroup.tabView.GroupItems.getActiveGroupItem().getTitle() + ">") }, 0);
set status^=tabgrouptitle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment