You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes the loading of the list non-blocking, since the command is
no longer piped to eval.
It also allows users to easily set key bindings via FZF_CTRL_R_OPTS,
that reload the history list. For example:
```
set -x FZF_CTRL_R_OPTS '--bind=\'ctrl-x:execute(history delete -- {2..})+reload(eval $FZF_DEFAULT_COMMAND)\''
```
To properly handle multi-line entries thought, the execute command of
the exapmle above, must become a little more complex:
```
eval history delete -- (string escape -- {2..} | string replace -a "\n\t" "\n")
```
0 commit comments