-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
fix: cmdline flicker when cmdheight = 0 #20644
base: master
Are you sure you want to change the base?
Conversation
I'm afraid it has the following issue: (status line vanishes) The status line is feline, and here is the setup. |
It really need feline to reproduce the problem? |
special casing |
@arsham Please create the minimal init.vim like this. set cmdheight=0
set rtp+=~/src/feline.nvim
set termguicolors
autocmd RecordingEnter * set cmdheight=1
autocmd RecordingLeave * set cmdheight=0
lua require('feline').setup() I don't reproduce your issue. |
I can confirm that this bug is not related to your code. I've found two plugins causing this issue: nvim-neorg/neorg and ldelossa/gh.nvim. I apologise for making a scene here. I'm just being a fan of your work and I tried to share a potential issue and I was wrong! |
OK. |
I have fixed the screen flicker when
cmdheight=0
.I don't know the clear is really needed.
@bfredl Can you check it?