Code Monkey home page Code Monkey logo

Comments (4)

spapas avatar spapas commented on June 8, 2024 1

Hello @liuchengxu after some research I found out that the problem is in file which_key/window.vim in the following lines (57):

  augroup which_key_cursor
    autocmd!
    execute 'autocmd BufLeave <buffer> set t_ve=' . &t_ve
    execute 'autocmd VimLeave <buffer> set t_ve=' . &t_ve
  augroup END

The error is because in windows cmd the t_ve has a value of ^[|V which needs to be escaped. So if you change the execute lines like this it won't throw the error anymore:

    execute 'autocmd BufLeave <buffer> set t_ve=' . escape(&t_ve, '|')
    execute 'autocmd VimLeave <buffer> set t_ve=' . escape(&t_ve, '|')

If you can confirm that this actually resolves the error I'd be happy to provide a PR!

from vim-which-key.

liuchengxu avatar liuchengxu commented on June 8, 2024

I can reproduce in cmd vim and powershell, but after the error message has been echoed, vim-which-key still works and the message never appears again. Git Bash doesn't have this issue. Will look into this later.

from vim-which-key.

spapas avatar spapas commented on June 8, 2024

Hello @liuchengxu in my case it is not working properly after the error has been echoed. What happens after that error is that whenever I press a key I see a non printable character in insert mode and that printable character and the character in command mode. This is really strange to explain so I'll provide a screenshot:

err

This is how my vim looks like after I've triggered the error and tried writing "Hello" to both the main buffer and the command prompt! The non printable character has the value of ESC ("1b" in ASCII)

from vim-which-key.

liuchengxu avatar liuchengxu commented on June 8, 2024

Good, I also just found the root cause! I can confirm your solution works, please open up a PR.

from vim-which-key.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.