5

A message is appearing in pycharm

Missing Keymap Cannot find keymap 'Windows Proper Redo"

I don't know what this message means and how to solve it. Please help

Bibek Paul
  • 142
  • 2
  • 9

1 Answers1

3

You should open Windows Proper Redo.xml file that is located at %APPDATA%\JetBrains\YOUR_PYCHARM_VERSION\keymaps\, for example, at c:\Users\Admin\AppData\Roaming\JetBrains\PyCharmCE2020.3\keymaps\ and then replace its content with the following code:

<keymap version="1" name="Windows Proper Redo" parent="$default">
  <action id="$Redo">
    <keyboard-shortcut first-keystroke="shift ctrl z" />
    <keyboard-shortcut first-keystroke="shift alt back_space" />
    <keyboard-shortcut first-keystroke="ctrl y" />
  </action>
  <action id="EditorDeleteLine" />
</keymap>
fallincode
  • 379
  • 4
  • 14