0

I wanted to know how I can use the same setting in pycharm as in VSCode.

"vim.insertModeKeyBindings": [
    {
        "before": ["k", "j"],
        "after": ["<Esc>"]
    }
]
romainl
  • 186,200
  • 21
  • 280
  • 313

1 Answers1

0

I actually found the solution. adding inoremap kj <ESC> to the .ideavimrc helped.

thanks, GitHub: @ikenox for the help.