m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-20 17:43:42 -05:00

added a little mru search function

gleachkr
2014-07-05 04:06:58 -07:00
parent a7bd48f333
commit 83451e7b80

@@ -193,3 +193,14 @@ function! BuffersLines()
return res
endfunction
```
Simple mru search
---
```vimL
command! FZFMru call fzf#run({
\'source': v:oldfiles,
\'sink' : 'e ',
\'options' : '-m',
\})
```