We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NVIM v0.8.3 Build type: Release LuaJIT 2.1.0-beta3
local Hydra = require('hydra') Hydra({ name = 'Split movements', mode = 'n', body = '<C-w>', config = { hint = { type = 'statusline', }, timeout = 250, }, heads = { { 'h', [[<cmd>try | wincmd h | catch /^Vim\%((\a\+)\)\=:E11:/ | close | endtry<CR>]] }, { 'j', [[<cmd>try | wincmd j | catch /^Vim\%((\a\+)\)\=:E11:/ | close | endtry<CR>]] }, { 'k', [[<cmd>try | wincmd k | catch /^Vim\%((\a\+)\)\=:E11:/ | close | endtry<CR>]] }, { 'l', [[<cmd>try | wincmd l | catch /^Vim\%((\a\+)\)\=:E11:/ | close | endtry<CR>]] }, }, })
C-w s
C-w j/k
Expected: The status line goes away after timeout
Actual: The status line is stuck
Rolled back to d00274f and it works as expected.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Neovim version
Configuration
Steps to reproduce
C-w s
to open a splitC-w j/k
to jump between splitsExpected: The status line goes away after timeout
Actual: The status line is stuck
Rolled back to d00274f and it works as expected.
The text was updated successfully, but these errors were encountered: