nvimdev / lspsaga.nvim

improve neovim lsp experience
MIT License
3.42k stars 286 forks source link

Can't close float window with `q` after pressing `ctrl-o` in `peek_definition` window. #1325

Closed scottming closed 11 months ago

scottming commented 11 months ago

Describe the bug

as title

Steps to reproduce

  1. peek_definition
  2. press ctrl-o
  3. press q

Expected behavior

step 3 should close the window.

Neovim version (nvim -v)

0.9.4

lspsaga commit

c66acbdf3dd10ab42219d270d1a6b9a096e85ff8

Terminal name/version

alacritty

glepnir commented 11 months ago

q is buffer-local map when you do <C-o> the buffer changed . q not work.

scottming commented 11 months ago

q is buffer-local map when you do the buffer changed . q not work.

ok