From 83451e7b80dd13aa51e4ce55c23d9d1a9fbdde20 Mon Sep 17 00:00:00 2001 From: gleachkr Date: Sat, 5 Jul 2014 04:06:58 -0700 Subject: [PATCH] added a little mru search function --- examples.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples.md b/examples.md index d78c8a1..dff33d9 100644 --- a/examples.md +++ b/examples.md @@ -192,4 +192,15 @@ function! BuffersLines() endfor return res endfunction +``` + +Simple mru search +--- + +```vimL +command! FZFMru call fzf#run({ + \'source': v:oldfiles, + \'sink' : 'e ', + \'options' : '-m', + \}) ``` \ No newline at end of file