メモ用としてjunkfile.vimを使う

junkfile.vimとは

github.com

使い方

  • unite.vimが必要

junkfile一覧

:Unite junkfile

新規にjunkfileを作成

:Unite junkfile/new junkfile -start-insert

junkfileを削除

:Unite junkfile

削除したいファイルまで移動 (d)

設定例

if neobundle#tap('junkfile.vim') "{{{
  let g:junkfile#directory = '~/.memo'
  nnoremap <silent> ,e  :<C-u>Unite junkfile/new junkfile -start-insert<CR>
  call neobundle#untap()
endif

document