:grep include src/buffer.c :copen :wincmd o :<CR>
The screen should display all lines correctly with no missing bottom line.
The trigger scenario is similar, but occurs via jump rather than directly switching buffers.
Maybe we should also do the same action at qf_jump*?
9.2.623
N/A
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
I wrote a temporary map to work around this error.
nnoremap <silent> <buffer> <CR> :call <SID>tmp_fix_jump_error()<CR> function! s:tmp_fix_jump_error() let id = win_getid() silent setl nowinfixheight silent execute "normal! \<CR>" silent call win_execute(id, 'resize 10') silent call win_execute(id, 'setl winfixheight') endfunction
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
Hi @h-east, with this fix, the quickfix window no longer keeps its original opening height. Is this expected behavior?
Image: Image (view on web)copencopen<C-w>o<CR>—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()