Home > Enterprise >  VS code equivalent new line shortcut for Android studio
VS code equivalent new line shortcut for Android studio

Time:03-11

I am new to Android Studio, and since in VS Code we could go to a new line using the shortcut "ctrl enter" from anywhere in the line. Is there a similar shortcut for Android Studio too?

CodePudding user response:

"Shift Enter" could do the trick.

More shortcuts here: https://developer.android.com/studio/intro/keyboard-shortcuts

CodePudding user response:

To Start new line use Shift Enter as above answer mentioned

And to Move Next/previous highlighted error user F2 or Shift F2

F2 is use for move to the next highlighted error

Shift F2 is use for move to the previous highlighted error

  • Related