Android Studio undo (Ctrl-Z) / redo (Ctrl-Y) not working
Asked Answered
B

5

59

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.

Boabdil answered 31/8, 2015 at 19:50 Comment(9)
possible duplicate of how to configure intelliJ redo action for CTRL+Y instead of CTRL+Shift+ZInnkeeper
Why you didn't researched 1 minute more that was the time to post an answer on your own question?....Goosander
It wasn't obvious to me that Android Studio is similar (or same as?) intelliJ. I'm sure I'm not the only one who wasn't aware of the similarity, so I'm sure other people will have the same question as I did and not know about intelliJ.Boabdil
@Boabdil the description of the android-studio tag states "Android Studio is an official IDE targeted at Android development, based on IntelliJ IDEA from JetBrains".Innkeeper
What I said in my previous message is still correct.Boabdil
...i.e., I wasn't aware of that and nor, I suspect, will some others be.Boabdil
@Boabdil I have been hit by this myself. Most programs use Ctrl-Y as an easy shortcut to Redo, but some idiots who think they know better than everyone else make Ctrl-Y delete lines (an outdated shortcut from the 1980s irrelevant in the 21st century) If you tried to redo what you just undid and found yourself deleting lines and panicking, you can minimize your loss by undoing the "delete line" action. But unfortunately, you will have to manually "redo" from memory what you undid. And be sure to remap that damn keyboard shortcut.Highmuckamuck
@Highmuckamuck yes! I am still trying to figure out how Ctrl+Y could mean Delete..Dishman
@Dishman one of JetBrains' annoying idiosyncrasies (which there are several of). JetBrains loves being the sardines that go against current industry standards. Google never should have based Android Studio on IntelliJ.Highmuckamuck
B
155

With the help of this answer, I have worked it out...

  1. Go into Settings (Ctrl+Alt + S)
  2. Type Redo in the search box.
  3. Double-click on the Redo result
  4. Select Add Keyboard Shortcut
  5. Press Ctrl+Y
  6. Click OK
  7. Click OK
Boabdil answered 31/8, 2015 at 19:50 Comment(1)
My answer is better as it is quicker. Plus it is a valid because it's correct. If you don't like the question, then you should just downvote the question.Boabdil
H
12

To undo an action, do one of the following:

  • On the menu bar, choose Edit -> Undo.
  • Press Ctrl+Z

To redo an action, do one of the following:

  • On the menu bar, choose Edit -> Redo.
  • Press Ctrl+Shift+Z
Hubby answered 27/1, 2016 at 7:32 Comment(0)
U
8

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

Uncleanly answered 31/8, 2015 at 19:53 Comment(1)
why downvote? I thought the author checked for duplicationsUncleanly
B
7

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

Burrton answered 2/10, 2018 at 19:35 Comment(0)
M
0

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.

Mcneese answered 17/7, 2017 at 18:51 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.