2021-04-17 11:48:10 +00:00
|
|
|
|
fzf.txt fzf Last change: April 17 2021
|
2017-04-01 03:00:30 +00:00
|
|
|
|
FZF - TABLE OF CONTENTS *fzf* *fzf-toc*
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
2020-12-30 00:08:16 +00:00
|
|
|
|
FZF Vim integration |fzf-vim-integration|
|
|
|
|
|
Installation |fzf-installation|
|
|
|
|
|
Summary |fzf-summary|
|
|
|
|
|
:FZF[!] |:FZF|
|
|
|
|
|
Configuration |fzf-configuration|
|
|
|
|
|
Examples |fzf-examples|
|
|
|
|
|
Explanation of g:fzf_colors |fzf-explanation-of-gfzfcolors|
|
|
|
|
|
fzf#run |fzf#run|
|
|
|
|
|
fzf#wrap |fzf#wrap|
|
|
|
|
|
Global options supported by fzf#wrap |fzf-global-options-supported-by-fzf#wrap|
|
|
|
|
|
Tips |fzf-tips|
|
|
|
|
|
fzf inside terminal buffer |fzf-inside-terminal-buffer|
|
|
|
|
|
Starting fzf in a popup window |fzf-starting-fzf-in-a-popup-window|
|
|
|
|
|
Hide statusline |fzf-hide-statusline|
|
|
|
|
|
License |fzf-license|
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
FZF VIM INTEGRATION *fzf-vim-integration*
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
|
INSTALLATION *fzf-installation*
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
|
|
Once you have fzf installed, you can enable it inside Vim simply by adding the
|
|
|
|
|
directory to 'runtimepath' in your Vim configuration file. The path may differ
|
|
|
|
|
depending on the package manager.
|
|
|
|
|
>
|
|
|
|
|
" If installed using Homebrew
|
|
|
|
|
set rtp+=/usr/local/opt/fzf
|
|
|
|
|
|
|
|
|
|
" If installed using git
|
|
|
|
|
set rtp+=~/.fzf
|
|
|
|
|
<
|
|
|
|
|
If you use {vim-plug}{1}, the same can be written as:
|
|
|
|
|
>
|
|
|
|
|
" If installed using Homebrew
|
|
|
|
|
Plug '/usr/local/opt/fzf'
|
|
|
|
|
|
|
|
|
|
" If installed using git
|
|
|
|
|
Plug '~/.fzf'
|
|
|
|
|
<
|
|
|
|
|
But if you want the latest Vim plugin file from GitHub rather than the one
|
|
|
|
|
included in the package, write:
|
|
|
|
|
>
|
|
|
|
|
Plug 'junegunn/fzf'
|
|
|
|
|
<
|
|
|
|
|
The Vim plugin will pick up fzf binary available on the system. If fzf is not
|
|
|
|
|
found on `$PATH`, it will ask you if it should download the latest binary for
|
|
|
|
|
you.
|
|
|
|
|
|
|
|
|
|
To make sure that you have the latest version of the binary, set up
|
|
|
|
|
post-update hook like so:
|
|
|
|
|
|
|
|
|
|
*fzf#install*
|
|
|
|
|
>
|
|
|
|
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
|
|
|
|
<
|
|
|
|
|
{1} https://github.com/junegunn/vim-plug
|
|
|
|
|
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
SUMMARY *fzf-summary*
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
|
|
The Vim plugin of fzf provides two core functions, and `:FZF` command which is
|
|
|
|
|
the basic file selector command built on top of them.
|
|
|
|
|
|
|
|
|
|
1. `fzf#run([spec dict])`
|
|
|
|
|
- Starts fzf inside Vim with the given spec
|
|
|
|
|
- `:call fzf#run({'source': 'ls'})`
|
|
|
|
|
2. `fzf#wrap([spec dict]) -> (dict)`
|
|
|
|
|
- Takes a spec for `fzf#run` and returns an extended version of it with
|
|
|
|
|
additional options for addressing global preferences (`g:fzf_xxx`)
|
|
|
|
|
- `:echo fzf#wrap({'source': 'ls'})`
|
|
|
|
|
- We usually wrap a spec with `fzf#wrap` before passing it to `fzf#run`
|
|
|
|
|
- `:call fzf#run(fzf#wrap({'source': 'ls'}))`
|
|
|
|
|
3. `:FZF [fzf_options string] [path string]`
|
|
|
|
|
- Basic fuzzy file selector
|
|
|
|
|
- A reference implementation for those who don't want to write VimScript to
|
|
|
|
|
implement custom commands
|
2020-04-05 09:14:05 +00:00
|
|
|
|
- If you're looking for more such commands, check out {fzf.vim}{2} project.
|
2019-11-22 16:54:52 +00:00
|
|
|
|
|
|
|
|
|
The most important of all is `fzf#run`, but it would be easier to understand
|
|
|
|
|
the whole if we start off with `:FZF` command.
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
|
{2} https://github.com/junegunn/fzf.vim
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:FZF[!]
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
|
|
*:FZF*
|
|
|
|
|
>
|
|
|
|
|
" Look for files under current directory
|
|
|
|
|
:FZF
|
|
|
|
|
|
|
|
|
|
" Look for files under your home directory
|
|
|
|
|
:FZF ~
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
" With fzf command-line options
|
|
|
|
|
:FZF --reverse --info=inline /tmp
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
" Bang version starts fzf in fullscreen mode
|
|
|
|
|
:FZF!
|
|
|
|
|
<
|
2020-10-18 04:06:51 +00:00
|
|
|
|
Similarly to {ctrlp.vim}{3}, use enter key, CTRL-T, CTRL-X or CTRL-V to open
|
2017-04-01 03:00:30 +00:00
|
|
|
|
selected files in the current window, in new tabs, in horizontal splits, or in
|
|
|
|
|
vertical splits respectively.
|
|
|
|
|
|
|
|
|
|
Note that the environment variables `FZF_DEFAULT_COMMAND` and
|
|
|
|
|
`FZF_DEFAULT_OPTS` also apply here.
|
|
|
|
|
|
2020-10-18 04:06:51 +00:00
|
|
|
|
{3} https://github.com/kien/ctrlp.vim
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
< Configuration >_____________________________________________________________~
|
|
|
|
|
*fzf-configuration*
|
|
|
|
|
|
2019-06-08 14:22:05 +00:00
|
|
|
|
*g:fzf_action* *g:fzf_layout* *g:fzf_colors* *g:fzf_history_dir*
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
- `g:fzf_action`
|
|
|
|
|
- Customizable extra key bindings for opening selected files in different
|
|
|
|
|
ways
|
|
|
|
|
- `g:fzf_layout`
|
2017-09-28 15:36:09 +00:00
|
|
|
|
- Determines the size and position of fzf window
|
2017-04-01 03:00:30 +00:00
|
|
|
|
- `g:fzf_colors`
|
|
|
|
|
- Customizes fzf colors to match the current color scheme
|
|
|
|
|
- `g:fzf_history_dir`
|
|
|
|
|
- Enables history feature
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Examples~
|
|
|
|
|
*fzf-examples*
|
|
|
|
|
>
|
|
|
|
|
" This is the default extra key bindings
|
|
|
|
|
let g:fzf_action = {
|
|
|
|
|
\ 'ctrl-t': 'tab split',
|
|
|
|
|
\ 'ctrl-x': 'split',
|
|
|
|
|
\ 'ctrl-v': 'vsplit' }
|
|
|
|
|
|
2017-08-14 07:22:07 +00:00
|
|
|
|
" An action can be a reference to a function that processes selected lines
|
|
|
|
|
function! s:build_quickfix_list(lines)
|
|
|
|
|
call setqflist(map(copy(a:lines), '{ "filename": v:val }'))
|
|
|
|
|
copen
|
|
|
|
|
cc
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
let g:fzf_action = {
|
|
|
|
|
\ 'ctrl-q': function('s:build_quickfix_list'),
|
|
|
|
|
\ 'ctrl-t': 'tab split',
|
|
|
|
|
\ 'ctrl-x': 'split',
|
|
|
|
|
\ 'ctrl-v': 'vsplit' }
|
|
|
|
|
|
2017-04-01 03:00:30 +00:00
|
|
|
|
" Default fzf layout
|
2021-04-17 11:48:10 +00:00
|
|
|
|
" - Popup window (center of the screen)
|
2020-09-12 12:08:05 +00:00
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
2021-04-17 11:48:10 +00:00
|
|
|
|
" - Popup window (center of the current window)
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true } }
|
|
|
|
|
|
|
|
|
|
" - Popup window (anchored to the bottom of the current window)
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
|
|
|
|
|
|
2020-10-18 04:06:51 +00:00
|
|
|
|
" - down / up / left / right
|
|
|
|
|
let g:fzf_layout = { 'down': '40%' }
|
|
|
|
|
|
|
|
|
|
" - Window using a Vim command
|
2017-04-01 03:00:30 +00:00
|
|
|
|
let g:fzf_layout = { 'window': 'enew' }
|
|
|
|
|
let g:fzf_layout = { 'window': '-tabnew' }
|
2019-06-08 14:29:04 +00:00
|
|
|
|
let g:fzf_layout = { 'window': '10new' }
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
" Customize fzf colors to match your color scheme
|
2019-11-22 16:54:52 +00:00
|
|
|
|
" - fzf#wrap translates this to a set of `--color` options
|
2017-04-01 03:00:30 +00:00
|
|
|
|
let g:fzf_colors =
|
|
|
|
|
\ { 'fg': ['fg', 'Normal'],
|
|
|
|
|
\ 'bg': ['bg', 'Normal'],
|
|
|
|
|
\ 'hl': ['fg', 'Comment'],
|
|
|
|
|
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
|
|
|
|
|
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
|
|
|
|
|
\ 'hl+': ['fg', 'Statement'],
|
|
|
|
|
\ 'info': ['fg', 'PreProc'],
|
2017-09-28 15:36:09 +00:00
|
|
|
|
\ 'border': ['fg', 'Ignore'],
|
2017-04-01 03:00:30 +00:00
|
|
|
|
\ 'prompt': ['fg', 'Conditional'],
|
|
|
|
|
\ 'pointer': ['fg', 'Exception'],
|
|
|
|
|
\ 'marker': ['fg', 'Keyword'],
|
|
|
|
|
\ 'spinner': ['fg', 'Label'],
|
|
|
|
|
\ 'header': ['fg', 'Comment'] }
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
" Enable per-command history
|
|
|
|
|
" - History files will be stored in the specified directory
|
|
|
|
|
" - When set, CTRL-N and CTRL-P will be bound to 'next-history' and
|
|
|
|
|
" 'previous-history' instead of 'down' and 'up'.
|
2017-04-01 03:00:30 +00:00
|
|
|
|
let g:fzf_history_dir = '~/.local/share/fzf-history'
|
|
|
|
|
<
|
|
|
|
|
|
2020-04-05 09:14:05 +00:00
|
|
|
|
Explanation of g:fzf_colors~
|
|
|
|
|
*fzf-explanation-of-gfzfcolors*
|
|
|
|
|
|
|
|
|
|
`g:fzf_colors` is a dictionary mapping fzf elements to a color specification
|
|
|
|
|
list:
|
|
|
|
|
>
|
|
|
|
|
element: [ component, group1 [, group2, ...] ]
|
|
|
|
|
<
|
|
|
|
|
- `element` is an fzf element to apply a color to:
|
|
|
|
|
|
2021-01-02 15:00:40 +00:00
|
|
|
|
----------------------------+------------------------------------------------------
|
|
|
|
|
Element | Description ~
|
|
|
|
|
----------------------------+------------------------------------------------------
|
|
|
|
|
`fg` / `bg` / `hl` | Item (foreground / background / highlight)
|
|
|
|
|
`fg+` / `bg+` / `hl+` | Current item (foreground / background / highlight)
|
|
|
|
|
`preview-fg` / `preview-bg` | Preview window text and background
|
|
|
|
|
`hl` / `hl+` | Highlighted substrings (normal / current)
|
|
|
|
|
`gutter` | Background of the gutter on the left
|
|
|
|
|
`pointer` | Pointer to the current line ( `>` )
|
|
|
|
|
`marker` | Multi-select marker ( `>` )
|
|
|
|
|
`border` | Border around the window ( `--border` and `--preview` )
|
|
|
|
|
`header` | Header ( `--header` or `--header-lines` )
|
|
|
|
|
`info` | Info line (match counters)
|
|
|
|
|
`spinner` | Streaming input indicator
|
|
|
|
|
`query` | Query string
|
|
|
|
|
`disabled` | Query string when search is disabled
|
|
|
|
|
`prompt` | Prompt before query ( `> ` )
|
|
|
|
|
`pointer` | Pointer to the current line ( `>` )
|
|
|
|
|
----------------------------+------------------------------------------------------
|
2020-04-05 09:14:05 +00:00
|
|
|
|
- `component` specifies the component (`fg` / `bg`) from which to extract the
|
|
|
|
|
color when considering each of the following highlight groups
|
|
|
|
|
- `group1 [, group2, ...]` is a list of highlight groups that are searched (in
|
|
|
|
|
order) for a matching color definition
|
|
|
|
|
|
|
|
|
|
For example, consider the following specification:
|
|
|
|
|
>
|
|
|
|
|
'prompt': ['fg', 'Conditional', 'Comment'],
|
|
|
|
|
<
|
|
|
|
|
This means we color the prompt - using the `fg` attribute of the `Conditional`
|
|
|
|
|
if it exists, - otherwise use the `fg` attribute of the `Comment` highlight
|
|
|
|
|
group if it exists, - otherwise fall back to the default color settings for
|
|
|
|
|
the prompt.
|
|
|
|
|
|
|
|
|
|
You can examine the color option generated according the setting by printing
|
|
|
|
|
the result of `fzf#wrap()` function like so:
|
|
|
|
|
>
|
|
|
|
|
:echo fzf#wrap()
|
|
|
|
|
<
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
FZF#RUN
|
2017-04-01 03:00:30 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
*fzf#run*
|
2019-06-08 14:17:30 +00:00
|
|
|
|
|
|
|
|
|
`fzf#run()` function is the core of Vim integration. It takes a single
|
2019-11-22 16:54:52 +00:00
|
|
|
|
dictionary argument, a spec, and starts fzf process accordingly. At the very
|
|
|
|
|
least, specify `sink` option to tell what it should do with the selected
|
|
|
|
|
entry.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
>
|
|
|
|
|
call fzf#run({'sink': 'e'})
|
|
|
|
|
<
|
2019-11-22 16:54:52 +00:00
|
|
|
|
We haven't specified the `source`, so this is equivalent to starting fzf on
|
|
|
|
|
command line without standard input pipe; fzf will use find command (or
|
|
|
|
|
`$FZF_DEFAULT_COMMAND` if defined) to list the files under the current
|
|
|
|
|
directory. When you select one, it will open it with the sink, `:e` command.
|
|
|
|
|
If you want to open it in a new tab, you can pass `:tabedit` command instead
|
|
|
|
|
as the sink.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
>
|
|
|
|
|
call fzf#run({'sink': 'tabedit'})
|
|
|
|
|
<
|
|
|
|
|
Instead of using the default find command, you can use any shell command as
|
2019-11-22 16:54:52 +00:00
|
|
|
|
the source. The following example will list the files managed by git. It's
|
|
|
|
|
equivalent to running `git ls-files | fzf` on shell.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
>
|
|
|
|
|
call fzf#run({'source': 'git ls-files', 'sink': 'e'})
|
|
|
|
|
<
|
2019-11-22 16:54:52 +00:00
|
|
|
|
fzf options can be specified as `options` entry in spec dictionary.
|
|
|
|
|
>
|
|
|
|
|
call fzf#run({'sink': 'tabedit', 'options': '--multi --reverse'})
|
|
|
|
|
<
|
|
|
|
|
You can also pass a layout option if you don't want fzf window to take up the
|
|
|
|
|
entire screen.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
>
|
|
|
|
|
" up / down / left / right / window are allowed
|
2019-11-22 16:54:52 +00:00
|
|
|
|
call fzf#run({'source': 'git ls-files', 'sink': 'e', 'left': '40%'})
|
2019-06-08 14:29:04 +00:00
|
|
|
|
call fzf#run({'source': 'git ls-files', 'sink': 'e', 'window': '30vnew'})
|
2019-06-08 14:17:30 +00:00
|
|
|
|
<
|
|
|
|
|
`source` doesn't have to be an external shell command, you can pass a Vim
|
2019-11-22 16:54:52 +00:00
|
|
|
|
array as the source. In the next example, we pass the names of color schemes
|
|
|
|
|
as the source to implement a color scheme selector.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
>
|
|
|
|
|
call fzf#run({'source': map(split(globpath(&rtp, 'colors/*.vim')),
|
|
|
|
|
\ 'fnamemodify(v:val, ":t:r")'),
|
|
|
|
|
\ 'sink': 'colo', 'left': '25%'})
|
|
|
|
|
<
|
2019-11-22 16:54:52 +00:00
|
|
|
|
The following table summarizes the available options.
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
---------------------------+---------------+----------------------------------------------------------------------
|
|
|
|
|
Option name | Type | Description ~
|
|
|
|
|
---------------------------+---------------+----------------------------------------------------------------------
|
2017-04-01 03:00:30 +00:00
|
|
|
|
`source` | string | External command to generate input to fzf (e.g. `find .` )
|
|
|
|
|
`source` | list | Vim list as input to fzf
|
|
|
|
|
`sink` | string | Vim command to handle the selected item (e.g. `e` , `tabe` )
|
|
|
|
|
`sink` | funcref | Reference to function to process each selected item
|
|
|
|
|
`sink*` | funcref | Similar to `sink` , but takes the list of output lines at once
|
2017-04-27 17:09:55 +00:00
|
|
|
|
`options` | string/list | Options to fzf
|
2017-04-01 03:00:30 +00:00
|
|
|
|
`dir` | string | Working directory
|
2019-11-22 16:54:52 +00:00
|
|
|
|
`up` / `down` / `left` / `right` | number/string | (Layout) Window position and size (e.g. `20` , `50%` )
|
2020-04-05 09:14:05 +00:00
|
|
|
|
`tmux` | string | (Layout) fzf-tmux options (e.g. `-p90%,60%` )
|
2019-11-22 16:54:52 +00:00
|
|
|
|
`window` (Vim 8 / Neovim) | string | (Layout) Command to open fzf window (e.g. `vertical aboveleft 30new` )
|
2020-02-03 15:35:57 +00:00
|
|
|
|
`window` (Vim 8 / Neovim) | dict | (Layout) Popup window settings (e.g. `{'width': 0.9, 'height': 0.6}` )
|
2019-11-22 16:54:52 +00:00
|
|
|
|
---------------------------+---------------+----------------------------------------------------------------------
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
2017-04-27 17:09:55 +00:00
|
|
|
|
`options` entry can be either a string or a list. For simple cases, string
|
2019-11-22 16:54:52 +00:00
|
|
|
|
should suffice, but prefer to use list type to avoid escaping issues.
|
2017-04-27 17:09:55 +00:00
|
|
|
|
>
|
|
|
|
|
call fzf#run({'options': '--reverse --prompt "C:\\Program Files\\"'})
|
|
|
|
|
call fzf#run({'options': ['--reverse', '--prompt', 'C:\Program Files\']})
|
|
|
|
|
<
|
2020-02-03 15:35:57 +00:00
|
|
|
|
When `window` entry is a dictionary, fzf will start in a popup window. The
|
|
|
|
|
following options are allowed:
|
|
|
|
|
|
|
|
|
|
- Required:
|
2020-09-06 13:12:51 +00:00
|
|
|
|
- `width` [float range [0 ~ 1]] or [integer range [8 ~ ]]
|
|
|
|
|
- `height` [float range [0 ~ 1]] or [integer range [4 ~ ]]
|
2020-02-03 15:35:57 +00:00
|
|
|
|
- Optional:
|
[vim] More border styles
e.g.
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } }
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
2020-02-13 15:32:45 +00:00
|
|
|
|
- `yoffset` [float default 0.5 range [0 ~ 1]]
|
|
|
|
|
- `xoffset` [float default 0.5 range [0 ~ 1]]
|
2021-04-17 11:48:10 +00:00
|
|
|
|
- `relative` [boolean default v:false]
|
[vim] More border styles
e.g.
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } }
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
2020-02-13 15:32:45 +00:00
|
|
|
|
- `border` [string default `rounded`]: Border style
|
2020-12-31 10:08:21 +00:00
|
|
|
|
- `rounded` / `sharp` / `horizontal` / `vertical` / `top` / `bottom` / `left` / `right` / `no[ne]`
|
2020-02-03 15:35:57 +00:00
|
|
|
|
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
FZF#WRAP
|
2017-04-01 03:00:30 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
*fzf#wrap*
|
|
|
|
|
|
|
|
|
|
We have seen that several aspects of `:FZF` command can be configured with a
|
|
|
|
|
set of global option variables; different ways to open files (`g:fzf_action`),
|
|
|
|
|
window position and size (`g:fzf_layout`), color palette (`g:fzf_colors`),
|
|
|
|
|
etc.
|
|
|
|
|
|
|
|
|
|
So how can we make our custom `fzf#run` calls also respect those variables?
|
|
|
|
|
Simply by "wrapping" the spec dictionary with `fzf#wrap` before passing it to
|
|
|
|
|
`fzf#run`.
|
|
|
|
|
|
|
|
|
|
- `fzf#wrap([name string], [spec dict], [fullscreen bool]) -> (dict)`
|
|
|
|
|
- All arguments are optional. Usually we only need to pass a spec
|
|
|
|
|
dictionary.
|
|
|
|
|
- `name` is for managing history files. It is ignored if `g:fzf_history_dir`
|
|
|
|
|
is not defined.
|
|
|
|
|
- `fullscreen` can be either `0` or `1` (default: 0).
|
|
|
|
|
|
|
|
|
|
`fzf#wrap` takes a spec and returns an extended version of it (also a
|
|
|
|
|
dictionary) with additional options for addressing global preferences. You can
|
|
|
|
|
examine the return value of it like so:
|
|
|
|
|
>
|
|
|
|
|
echo fzf#wrap({'source': 'ls'})
|
|
|
|
|
<
|
|
|
|
|
After we "wrap" our spec, we pass it to `fzf#run`.
|
|
|
|
|
>
|
|
|
|
|
call fzf#run(fzf#wrap({'source': 'ls'}))
|
|
|
|
|
<
|
2020-10-18 04:06:51 +00:00
|
|
|
|
Now it supports CTRL-T, CTRL-V, and CTRL-X key bindings (configurable via
|
|
|
|
|
`g:fzf_action`) and it opens fzf window according to `g:fzf_layout` setting.
|
2019-11-22 16:54:52 +00:00
|
|
|
|
|
|
|
|
|
To make it easier to use, let's define `LS` command.
|
|
|
|
|
>
|
|
|
|
|
command! LS call fzf#run(fzf#wrap({'source': 'ls'}))
|
|
|
|
|
<
|
|
|
|
|
Type `:LS` and see how it works.
|
2019-06-08 14:17:30 +00:00
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
We would like to make `:LS!` (bang version) open fzf in fullscreen, just like
|
|
|
|
|
`:FZF!`. Add `-bang` to command definition, and use <bang> value to set the
|
|
|
|
|
last `fullscreen` argument of `fzf#wrap` (see :help <bang>).
|
|
|
|
|
>
|
|
|
|
|
" On :LS!, <bang> evaluates to '!', and '!0' becomes 1
|
|
|
|
|
command! -bang LS call fzf#run(fzf#wrap({'source': 'ls'}, <bang>0))
|
|
|
|
|
<
|
|
|
|
|
Our `:LS` command will be much more useful if we can pass a directory argument
|
|
|
|
|
to it, so that something like `:LS /tmp` is possible.
|
2017-04-01 03:00:30 +00:00
|
|
|
|
>
|
2021-04-17 11:48:10 +00:00
|
|
|
|
command! -bang -complete=dir -nargs=? LS
|
2019-11-22 16:54:52 +00:00
|
|
|
|
\ call fzf#run(fzf#wrap({'source': 'ls', 'dir': <q-args>}, <bang>0))
|
|
|
|
|
<
|
|
|
|
|
Lastly, if you have enabled `g:fzf_history_dir`, you might want to assign a
|
|
|
|
|
unique name to our command and pass it as the first argument to `fzf#wrap`.
|
|
|
|
|
>
|
|
|
|
|
" The query history for this command will be stored as 'ls' inside g:fzf_history_dir.
|
|
|
|
|
" The name is ignored if g:fzf_history_dir is not defined.
|
2021-04-17 11:48:10 +00:00
|
|
|
|
command! -bang -complete=dir -nargs=? LS
|
2019-11-22 16:54:52 +00:00
|
|
|
|
\ call fzf#run(fzf#wrap('ls', {'source': 'ls', 'dir': <q-args>}, <bang>0))
|
2017-04-01 03:00:30 +00:00
|
|
|
|
<
|
|
|
|
|
|
2020-10-18 04:06:51 +00:00
|
|
|
|
< Global options supported by fzf#wrap >______________________________________~
|
|
|
|
|
*fzf-global-options-supported-by-fzf#wrap*
|
|
|
|
|
|
|
|
|
|
- `g:fzf_layout`
|
|
|
|
|
- `g:fzf_action`
|
|
|
|
|
- Works only when no custom `sink` (or `sink*`) is provided
|
|
|
|
|
- Having custom sink usually means that each entry is not an ordinary
|
|
|
|
|
file path (e.g. name of color scheme), so we can't blindly apply the
|
|
|
|
|
same strategy (i.e. `tabedit some-color-scheme` doesn't make sense)
|
|
|
|
|
- `g:fzf_colors`
|
|
|
|
|
- `g:fzf_history_dir`
|
|
|
|
|
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
TIPS *fzf-tips*
|
2017-11-19 03:07:03 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
|
2019-11-22 16:54:52 +00:00
|
|
|
|
|
|
|
|
|
< fzf inside terminal buffer >________________________________________________~
|
|
|
|
|
*fzf-inside-terminal-buffer*
|
|
|
|
|
|
2017-11-19 03:07:03 +00:00
|
|
|
|
The latest versions of Vim and Neovim include builtin terminal emulator
|
|
|
|
|
(`:terminal`) and fzf will start in a terminal buffer in the following cases:
|
|
|
|
|
|
|
|
|
|
- On Neovim
|
|
|
|
|
- On GVim
|
2019-11-29 09:32:49 +00:00
|
|
|
|
- On Terminal Vim with a non-default layout
|
2017-11-19 03:07:03 +00:00
|
|
|
|
- `call fzf#run({'left': '30%'})` or `let g:fzf_layout = {'left': '30%'}`
|
|
|
|
|
|
|
|
|
|
|
2020-02-03 15:35:57 +00:00
|
|
|
|
Starting fzf in a popup window~
|
|
|
|
|
*fzf-starting-fzf-in-a-popup-window*
|
2019-11-22 16:54:52 +00:00
|
|
|
|
>
|
2020-02-03 15:35:57 +00:00
|
|
|
|
" Required:
|
2020-10-18 04:06:51 +00:00
|
|
|
|
" - width [float range [0 ~ 1]] or [integer range [8 ~ ]]
|
|
|
|
|
" - height [float range [0 ~ 1]] or [integer range [4 ~ ]]
|
2020-02-03 15:35:57 +00:00
|
|
|
|
"
|
|
|
|
|
" Optional:
|
2020-02-06 01:38:37 +00:00
|
|
|
|
" - xoffset [float default 0.5 range [0 ~ 1]]
|
|
|
|
|
" - yoffset [float default 0.5 range [0 ~ 1]]
|
2021-04-17 11:48:10 +00:00
|
|
|
|
" - relative [boolean default v:false]
|
[vim] More border styles
e.g.
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 0, 'border': 'right' } }
let g:fzf_layout = { 'window': { 'width': 0.4, 'height': 1, 'xoffset': 1, 'border': 'left' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 1, 'border': 'top' } }
let g:fzf_layout = { 'window': { 'width': 1, 'height': 0.5, 'yoffset': 0, 'border': 'bottom' } }
2020-02-13 15:32:45 +00:00
|
|
|
|
" - border [string default 'rounded']: Border style
|
|
|
|
|
" - 'rounded' / 'sharp' / 'horizontal' / 'vertical' / 'top' / 'bottom' / 'left' / 'right'
|
2020-02-03 15:35:57 +00:00
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
|
2019-11-22 16:54:52 +00:00
|
|
|
|
<
|
2020-04-05 09:14:05 +00:00
|
|
|
|
Alternatively, you can make fzf open in a tmux popup window (requires tmux 3.2
|
|
|
|
|
or above) by putting fzf-tmux options in `tmux` key.
|
|
|
|
|
>
|
|
|
|
|
" See `man fzf-tmux` for available options
|
|
|
|
|
if exists('$TMUX')
|
|
|
|
|
let g:fzf_layout = { 'tmux': '-p90%,60%' }
|
|
|
|
|
else
|
|
|
|
|
let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6 } }
|
|
|
|
|
endif
|
|
|
|
|
<
|
2019-11-22 16:54:52 +00:00
|
|
|
|
|
|
|
|
|
Hide statusline~
|
2017-11-19 03:07:03 +00:00
|
|
|
|
*fzf-hide-statusline*
|
|
|
|
|
|
2019-11-29 09:32:49 +00:00
|
|
|
|
When fzf starts in a terminal buffer, the file type of the buffer is set to
|
|
|
|
|
`fzf`. So you can set up `FileType fzf` autocmd to customize the settings of
|
|
|
|
|
the window.
|
|
|
|
|
|
2020-10-18 04:06:51 +00:00
|
|
|
|
For example, if you use a non-popup layout (e.g. `{'down': '40%'}`) on Neovim,
|
|
|
|
|
you might want to temporarily disable the statusline for a cleaner look.
|
2017-11-19 03:07:03 +00:00
|
|
|
|
>
|
2019-11-29 09:32:49 +00:00
|
|
|
|
if has('nvim') && !exists('g:fzf_layout')
|
|
|
|
|
autocmd! FileType fzf
|
|
|
|
|
autocmd FileType fzf set laststatus=0 noshowmode noruler
|
|
|
|
|
\| autocmd BufLeave <buffer> set laststatus=2 showmode ruler
|
|
|
|
|
endif
|
2017-11-19 03:07:03 +00:00
|
|
|
|
<
|
|
|
|
|
|
2017-04-01 03:00:30 +00:00
|
|
|
|
LICENSE *fzf-license*
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
2021-01-02 15:54:28 +00:00
|
|
|
|
Copyright (c) 2013-2021 Junegunn Choi
|
2017-04-01 03:00:30 +00:00
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
vim:tw=78:sw=2:ts=2:ft=help:norl:nowrap:
|