-
Notifications
You must be signed in to change notification settings - Fork 41
Add border to neovim floating window. #74
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
Add border to neovim floating window. #74
Conversation
|
Please provide screenshot for such big improvment, also where should be way to configure borders |
752d76b to
471094d
Compare
|
Hi @pechorin, Awesome project! Have you considered merging this feature in the near future? 🙏🏼 |
|
ping @pechorin |
|
I think this possible if this will be option (and not enabled by default). You can rework this, or wait for me :) |
|
|
||
| " Borders for neovim floating window, list of strings in this order | ||
| " top left corner, top right corner, bottom left corner, bottom right corner, top/bottom, left/right | ||
| let g:any_jump_neovim_border = ['╭', '╮','╰', '╯', '─', '│'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add option, for enabling or disabling this (this should not be enabled by default)
| \ 'style': 'minimal', | ||
| \ } | ||
|
|
||
| let [topleft_b, topright_b, botleft_b, botright_b, horizontal_b, vertical_b] = g:any_jump_neovim_border |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move all this logic code part to separate function :)
|
This is not applicable any more because neovim has built in borders now. It should be much simpler to add it. I'll let someone else take care of that. |

This adds support for borders for neovim floating window. Also fixes part of #27.