summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-07-160.13.30.13.3Junegunn Choi
2016-07-16[install] Build fzf if prebuilt binary doesn't workJunegunn Choi
Close #617
2016-07-15Fix duplicate rendering of the last line in preview windowJunegunn Choi
2016-07-15[zsh-completion] setopt localoptions noksh_arraysJunegunn Choi
Close #607
2016-07-14[vim] Adjust split size when --header option is setJunegunn Choi
Close #622
2016-07-13[vim] Fix error with multi-line $FZF_DEFAULT_COMMANDJunegunn Choi
Close #620
2016-07-11[zsh] Suppress error message when pipefail is not supportedJunegunn Choi
Close #615
2016-07-10[test] Fix test failure on Travis CIJunegunn Choi
No guarantee in the order in which files are listed
2016-07-10[bash] Fall back to send-keys if named paste buffer is not supportedJunegunn Choi
Related: #616
2016-07-10[fzf-tmux] Add man pageJunegunn Choi
2016-07-10[fzf-tmux] Add --version and --help flagsJunegunn Choi
2016-07-10[fzf-tmux] Use double bracketsJunegunn Choi
For consistency and (negligible) performance improvement
2016-07-10[fzf-tmux] Fail fast if fzf excutable is not foundJunegunn Choi
2016-07-10Merge pull request #616 from seanlaguna/masterJunegunn Choi
Use tmux buffers for sending output to preserve character encoding
2016-07-10[test] Use tmux buffer in unicode test casesJunegunn Choi
Related #616
2016-07-09use tmux buffers for sending output to preserve character encodingSean
2016-07-07[shell] Suppress alias/function expansionJunegunn Choi
Close #611
2016-07-06[vim] Restore working directory even when new window is openedJunegunn Choi
Close #612
2016-07-05Merge pull request #610 from eigengrau/masterJunegunn Choi
[zsh] Re-initialize zle when widgets finish
2016-07-05[zsh] Re-initialize zle when widgets finishSebastian Reuße
zle automatically calls zle-line-init when it starts to read a new line. Many Zsh setups use this hook to set the terminal into application mode, since this will then allow defining keybinds based on the $terminfo variable (the escape codes in said variable are only valid in application mode). However, fzf resets the terminal into raw mode, rendering $terminfo values invalid once the widget has finished. Accordingly, keyboard bindings defined via $terminfo won’t work anymore. This fixes the issue by calling zle-line-init when widgets finish. Care is taken to not call this widget when it is undefined. Fixes #279
2016-07-04[install] Make sure to unset pipefailJunegunn Choi
2016-07-04[install] Fix error in install scriptJunegunn Choi
Close #608
2016-07-04[install] Fall back to wget if curl failedJunegunn Choi
Close #605
2016-06-18Merge pull request #601 from blueyed/zsh-ret-for-fzf-file-widgetJunegunn Choi
zsh: pass through exit code from fzf with fzf-file-widget
2016-06-16zsh: pass through exit code from widgetsDaniel Hahler
This allows to have a custom widget like the following, which would additionally accept the line, but only in case of entries being selected: fzf-file-widget-with-accept() { zle fzf-file-widget if [[ "$?" == 0 ]] && (( $#BUFFER )); then zle accept-line fi } zle -N fzf-file-widget-with-accept bindkey '\e^T' fzf-file-widget-with-accept With this `<C-a>t` will launch fzf, and simulate the pressing of "Enter" afterwards.
2016-06-160.13.20.13.2Junegunn Choi
2016-06-15Fix race condition where preview window is not properly clearedJunegunn Choi
2016-06-140.13.10.13.1Junegunn Choi
2016-06-14Do not process ANSI codes in --preview output at onceJunegunn Choi
Close #598
2016-06-12[shell] Add $FZF_CTRL_T_OPTS and $FZF_ALT_C_OPTSJunegunn Choi
Close #596
2016-06-12Merge pull request #595 from aykamko/speed-up-fzf-completionJunegunn Choi
Optimize fzf_default_completion binding
2016-06-11optimize fzf_default_completion bindingAleks Kamko
2016-06-120.13.00.13.0Junegunn Choi
2016-06-11Add --preview and --preview-windowJunegunn Choi
Close #587
2016-06-11Ignore controls chars for bracketed paste modeJunegunn Choi
Close #594
2016-06-10Merge pull request #593 from edi9999/masterJunegunn Choi
Add fzf_prefer_tmux option
2016-06-10Add fzf_prefer_tmux optionEdgar Hipp
2016-06-08Update test_execute_shell (#590)Junegunn Choi
2016-06-08Update test_execute_multi (#590)Junegunn Choi
2016-06-08Update test_execute (#590)Junegunn Choi
2016-06-08[bash/zsh] Fix $FZF_CTRL_R_OPTS with option values with spacesJunegunn Choi
2016-06-08[fzf-tmux] Escape $ in argumentsJunegunn Choi
e.g. fzf-tmux -q '$PATH' Related: #343
2016-06-08Use single-quoted strings in execute actionJunegunn Choi
Close #590
2016-06-03[vim/fzf-tmux] Handle fzf project directory with spacesJunegunn Choi
Close #583
2016-06-03Revert "Change tmux pane title for fzf splits"Junegunn Choi
This reverts commit f074709fc96291f9a7d41d1fda9d9193c92b57e0. Close #586. /cc @akashin
2016-06-02[vim] Use lcd instead of chdirJunegunn Choi
https://github.com/junegunn/fzf.vim/issues/147
2016-06-02[zsh] Fix indentationJunegunn Choi
2016-06-02Merge pull request #584 from jimbocoder/masterJunegunn Choi
Take SSH completion hints from known_hosts
2016-06-02[bash/zsh] Take SSH completion hints from known_hostsJim Howell
Signed-off-by: Junegunn Choi <junegunn.c@gmail.com>
2016-06-01Merge pull request #582 from akashin/masterJunegunn Choi
[fzf-tmux] Change tmux pane title for fzf splits