mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-20 17:43:42 -05:00
added a little mru search function
11
examples.md
11
examples.md
@@ -193,3 +193,14 @@ function! BuffersLines()
|
|||||||
return res
|
return res
|
||||||
endfunction
|
endfunction
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Simple mru search
|
||||||
|
---
|
||||||
|
|
||||||
|
```vimL
|
||||||
|
command! FZFMru call fzf#run({
|
||||||
|
\'source': v:oldfiles,
|
||||||
|
\'sink' : 'e ',
|
||||||
|
\'options' : '-m',
|
||||||
|
\})
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user