-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[vim] Use Vim 8 terminal when appropriate #1055
Comments
Any Vim patches required for non-Windows Vim? |
No, it works now, though I'm unhappy with vim/vim#1998 being open |
Will there be another release soon? |
I'll take a few more days and think about if there's anything else I'd like to address in the next release, but I'll build and upload an alpha version tonight so you can test it beforehand if you want. Thanks. |
It's fine for me on default settings so we can use the ruby preview script in fzf.vim under the 16 color limit in cmd.exe. |
@junegunn After more testing with the Vim 8 terminal on ConEmu with I'll submit a PR when I figure out how to detect ConEmu correctly and consistently in nested Vim/Neovim terminals. |
There are 5 types of layout options supported by Vim plugin of fzf: up, down, left, right, and window.
--height
up
down
left
right
window
Summary
--height
the most fordown
layout. It's clean and does not require you to be on tmux. But some users prefer tmux panes as they can zoom in the pane (Not opening in tmux pane fzf.vim#296), so we provideg:fzf_prefer_tmux
flag.window
layout and alsoup
,left
, andright
if the user is not on tmux.down
. It takes precedence over using tmux unlessg:fzf_prefer_tmux
is true. I'm not sure if it's the right decision at the moment because of the open issue of Vim 8 terminal (i.e. CTRL-J vs CTRL-M).The text was updated successfully, but these errors were encountered: