summaryrefslogtreecommitdiffstats
path: root/plugin
AgeCommit message (Collapse)Author
2015-06-27[neovim] Fix #281 - Properly close window with winnr 1Junegunn Choi
2015-06-21[neovim] Fix error with {'window': 'enew'} (#274)0.10.0Junegunn Choi
2015-06-13Avoid conflict with other neoterm plugins.Kassio Borges
To avoid conflict with other neoterm plugins that manage terminals, prefer named terminals.
2015-05-14[vim] Use close+bufhidden=wipe instead of bdJunegunn Choi
2015-05-14[neovim] Check tabpagenr() as wellJunegunn Choi
2015-05-14[neovim] Make sure that fzf buffer is closed (#225)Junegunn Choi
- bd! leaves the window open when there's no other listed buffer - redraw! seems to help avoid Neovim issues.
2015-05-13[vim] Escape % # \Junegunn Choi
2015-05-13[vim] Refocus MacVim windowJunegunn Choi
2015-05-03[vim] Improve binary detectionJunegunn Choi
/cc @alerque - Ask for user confirmation before running `install --bin` - Removed `s:fzf_rb` since `install --bin` will create a wrapper executable that just runs Ruby version on the platforms where prebuilt binaries are not available.
2015-04-28[vim] Fix #220 - Prevent error after updateJunegunn Choi
2015-04-24[vim] Update default launcher for GVim (#212)Junegunn Choi
Code submitted by @lydell
2015-04-23[vim] Ignore E325 (#213)Junegunn Choi
2015-04-23[vim] Redraw screen after running fzf on tmux pane (#213)Junegunn Choi
2015-04-23[vim] Add g:Fzf_launcher for funcrefs (#212)Junegunn Choi
2015-04-20[fzf-tmux/vim] Fixes for fish (#204)Junegunn Choi
2015-04-19[vim] Use "system" fzf when availableJunegunn Choi
1. Go binary: ../bin/fzf 2. System fzf: $(which fzf) 3. Download fzf from GitHub or create wrapper script to Ruby version (../fzf) when the binary for the platform is not available 4. If install script is not found or for some reason failed, try to use Ruby version in its expected location (../fzf) 5. If fzf is found to be a shell function, use it (type fzf)
2015-04-16[vim] Automatically download Go binary when not foundJunegunn Choi
2015-04-15[vim] Add g:fzf_action for customizing key bindingsJunegunn Choi
Close #189
2015-04-15[vim] Rename g:fzf_tmux_height to g:fzf_heightJunegunn Choi
Because tmux panes are not used on Neovim.
2015-04-14[vim] Simplify :FZFJunegunn Choi
Ruby version can also accept `--expect` option although it's ignored.
2015-04-14[vim] Remove unnecessary pushd/popd in :FZFJunegunn Choi
It is already handled by its caller.
2015-04-11Move active check to fzf#run.Bryan Head
2015-04-11[vim] s:pushd after s:splitJunegunn Choi
It is possible that the user has an autocmd that changes the current directory.
2015-04-11[vim] Improved compatibility with sidebar plugins (e.g. NERDtree)Junegunn Choi
2015-04-11Suppress message from :fileJunegunn Choi
Suggested by @noahfrederick
2015-04-10Check if :FZF is already executingMarco Hinz
Prior to this change, you'd get a longer error message if you did: :FZF <esc> :FZF The main problem being that `:file [FZF]` can be used only once.
2015-04-10[vim] Neovim compatibility (#137)Junegunn Choi
Use terminal emulator of Neovim to open fzf
2015-04-04[vim] Code cleanup0.9.7-1Junegunn Choi
2015-04-04[vim] Fix #177 - :FZF with relative pathsJunegunn Choi
2015-03-29[vim] Fix #167 - :FZF with directoryJunegunn Choi
2015-03-29[vim] Implement ctrlp-compatible key bindings (#139, #96, #61)Junegunn Choi
2015-03-13[vim] Suppress error message when clear command is N/AJunegunn Choi
2015-03-10[vim] up/down/left/right options to take boolean values0.9.4-1Junegunn Choi
When 1 is given, 50% of the screen width or height will be used as the default size of the pane.
2015-03-10[vim] fzf#run with tmux panes can now return values to the callerJunegunn Choi
As they're made synchronous with the use of fzf-tmux script
2015-03-10[vim] Use fzf-tmux script for tmux integrationJunegunn Choi
2015-03-07Improve how vim plugin finds fzf executableJunegunn Choi
This avoids the problem in which :FZF command silently fails when fzf executable cannot be found in $PATH of the hosting tmux server.
2015-01-07Update vim plugin to use Go binaryJunegunn Choi
2014-10-15[vim] Ignore 'dir' option if emptyJunegunn Choi
This makes it easier to override FZF command like follows: autocmd VimEnter * command! -nargs=? -bang -complete=dir FZF call fzf#run({ \ 'sink': 'tabe', \ 'dir': <q-args>, \ 'options': '-m', \ 'tmux_height': empty('<bang>') ? '40%' : '' })
2014-08-08[vim] Apply FZF_DEFAULT_{OPTS,COMMAND} when using tmux splits (#87)Junegunn Choi
Fixed escaping bug of the previous commit
2014-08-08Revert "[vim] Apply FZF_DEFAULT_{OPTS,COMMAND} when using tmux splits (#87)"Junegunn Choi
This reverts commit cc9938d4c9eed9a5e28846b3fb1fcde56d074125.
2014-08-08[vim] Apply FZF_DEFAULT_{OPTS,COMMAND} when using tmux splits (#87)Junegunn Choi
2014-07-04[vim] Do not print error message on exit status 1Junegunn Choi
2014-06-27[vim] Defer `type fzf` to reduce startup timeJunegunn Choi
2014-06-15[vim] External terminal emulator for GVimJunegunn Choi
2014-06-15[vim] Options to xterm commandJunegunn Choi
2014-06-15[vim] Enable fzf in GVim using xtermJunegunn Choi
2014-04-12[Vim] Allow vertical split of tmux windowJunegunn Choi
2014-04-04Vim plugin: do not enable tmux-integration if version < 1.7Junegunn Choi
2014-03-31Use -p option of split-window instead of manual calculationJunegunn Choi
2014-03-31No need for screenrow()Junegunn Choi