Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

memolist.vimのgrepをDeniteのgrepにする

$
0
0

memolist.vimという便利なmemo取りpluginがあります。
軽量で使いやすくオススメなのですが、ここがなーと思っている箇所がありました。
MemoGrepというcommandがありますが、この実装はVimGrepをしているのです。

function! memolist#grep(word)
  let word = a:word
  if word == ''
    let word = input("MemoGrep word: ")
  endif
  if word == ''
    return
  endif

  try
    if get(g:, 'memolist_qfixgrep', 0) != 0
      exe "Vimgrep -r" s:escarg(word) s:escarg(g:memolist_path . "/*")
    else
      exe "vimgrep" s:escarg(word) s:escarg(g:memolist_path . "/*")
    endif
  catch
    redraw | echohl ErrorMsg | echo v:exception | echohl None
  endtry
endfunction

あれ?オプションlet g:memolist_denite = 1でDenite grepしてくれると思ってたのに…(´・ω・`)
ゆるふわ系VimmerとしてはVimGrepはハードボイルド過ぎるのでDenite grepをするようにしてみました。

" 適当にvimrcにでも書いて下さい

function! s:memoGrepDenite()
    let l:option = '-path=' . expand('$HOME/path/to/memolist')
    exe 'Denite' 'grep' l:option '-highlight-mode-insert=Search'
endfunction

command! MemoGrepDenite call s:memoGrepDenite()<CR>

これで:MemoGrepDeniteコマンドができて、ホクホク(・∀・)


Viewing all articles
Browse latest Browse all 5608

Trending Articles