-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Neovim version
NVIM v0.8.3
Build type: Release
LuaJIT 2.1.0-beta3
Configuration
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>]] },
},
})
Steps to reproduce
- Open any file
C-w s
to open a splitC-w j/k
to jump between splits
Expected: The status line goes away after timeout
Actual: The status line is stuck
Rolled back to d00274f and it works as expected.
Metadata
Metadata
Assignees
Labels
No labels