Skip to content
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

Status line is stuck after 3ced42c #73

Open
Frederick888 opened this issue Feb 9, 2023 · 0 comments · May be fixed by #74
Open

Status line is stuck after 3ced42c #73

Frederick888 opened this issue Feb 9, 2023 · 0 comments · May be fixed by #74

Comments

@Frederick888
Copy link
Contributor

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

  1. Open any file
  2. C-w s to open a split
  3. C-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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant