Jooxa
Jooxa

Reputation: 637

Ctrl + keys not work on my PHPStorm application

I'm using PHPStorm for developing my website.

It's works very great.

Recently i got an major problem on this software.

When I use this keys Ctrl+A , Ctrl+Z , Ctrl+V,...

Don't work above key combinations.

also I got this error when using keymaps...

enter image description here

Please give me a solution...

Upvotes: 12

Views: 18560

Answers (8)

Ever Abarca
Ever Abarca

Reputation: 1

Uninstall IdeaVim

To remove the configuration files go to ~/.PyChrarm.****(version) and delete this folder, rm -rf ~/.PyChrarm.****(version)

Then open Pycharm and config your IDE without IdeaVim This works!!!

Upvotes: 0

Ever Abarca
Ever Abarca

Reputation: 1

If you want a regular behavior like a other code editors, so do this:

  1. Go to; File -> Setting -> Keymap(In Left Side of the window).
  2. Set Keymaps (Drop Down) value to "Default". Done.

Upvotes: 0

Patrick Graham
Patrick Graham

Reputation: 982

I had this same issue in WebStorm, where the shortcut keys all of a sudden just stopped working for me. All I had to do was restart WebStorm. As soon as I started it back up the keyboard shortcuts started working again.

Upvotes: 1

Manoj Kumar
Manoj Kumar

Reputation: 63

  1. Go to File -> Setting -> Keymap(In Left Side of the window).
  2. Set Keymaps(Drop Down) value to "Default". Done.

Upvotes: 5

gtsouk
gtsouk

Reputation: 5263

I had this issue with phpstorm but not with other java based IDEs (Intellij worked fine).

If you have dual/multiple keyboard layouts, make sure your first keyboard layout is English. For some reason, having a non en/us layout first, taints jvm.

https://youtrack.jetbrains.com/issue/WI-11716

I am using phpstorm-8.0.3 on linux-3.19.0 with gnome-3.14.3 and java-1.8.0_45

Upvotes: 2

blamb
blamb

Reputation: 4290

Just go to C:\Users\<user>\.WebIde70\config\keymaps and delete or rename the Vim.xml file. If you still have problems after restarting PHPStorm and have any other files in here then do the same with those.

Upvotes: 0

martingoeg
martingoeg

Reputation: 166

Just go to settings/keymap and choose default instead of Vim, no need to delete all the settings.

Upvotes: 15

CrazyCoder
CrazyCoder

Reputation: 401877

Uninstall IdeaVim plug-in in Settings | Plugins and restart PhpStorm.

Upvotes: 14

Related Questions