Reputation: 18871
I've just moved from Eclipse to Android Studio and am finding really weird behaviour when I try to do Ctrl+Z / Ctrl+Y to undo/redo code changes.
It hard to describe what happens exactly, but the end result is that I usually end up just losing my code and having to type it back in from memory...
The 'undo' and 'redo' buttons in the IDE do seem to work fine, so maybe something is wrong with my shortcut keys (which would be surprising as I should just have a standard installation / setup).
Can anyone advise what to do, so Ctrl and Z / Ctrl+Y will work in the expected manner.
Upvotes: 60
Views: 77758
Reputation: 129
To undo an action, do one of the following:
To redo an action, do one of the following:
Upvotes: 12
Reputation: 1100
You can try this one. It is simple and default:
(CTRL + Z)
This is for undo.
Just press (CTRL + SHIFT + Z) for redo.
(CTRL + Y) it has individual task. So it would be better if you don't bother this one.
1. CTRL + Z -> Undo
2. CTRL + SHIFT + Z -> Redo
3. CTRL + Y -> Delete line
Happy Coding
Upvotes: 7
Reputation: 18871
With the help of this answer, I have worked it out...
Settings
(Ctrl+Alt + S)Redo
in the search box.Redo
resultAdd Keyboard Shortcut
OK
OK
Upvotes: 158
Reputation: 187
CTRL + Z works fine and undo the work but CTRL + Y is a bit messy combo.
Unlike most software CTRL + Y here doesn't mean redo but its infact a shortcut to delete the entire line, hence you loose your code.
So if you wanna REDO use CTRL + SHIFT+Z(as already told above) or change keymapping.
Upvotes: 0
Reputation: 4911
ctrl+Y deletes line by default in Android. If you want to change this behaviour, go to Keymap under Settings and set your desired shortcut for Redo action
By the way, the same question: how to configure intelliJ/Android Studio redo action for CTRL+Y instead of CTRL+Shift+Z
Upvotes: 8