简体   繁体   中英

android studio / intellij idea goto line number

In Eclipse, if I type cmd+L, it opens a dialog for me to enter a line number and it takes me there in the code. How do I do the same thing in Android Studio? Instead of having to scroll each time I need a specific line number.

The shortcut to go to a specific line and/or column number is: CTRL G

Android Studio Go to Line dialog box ( archive )

Examples:

  1. Go to line 6
    Ctrl G 6 Enter

  2. Go to line 6 and column 8
    Ctrl G 6 : 8 Enter

  3. Go to column 4 on the current line
    Ctrl G : 4 Enter


Shortcut References:

Use Command + L for Mac OS X.

IntellijIDEA default keymap reference Here is the IntellijIDEA default keymap reference. This is applicable to Android Studio too.

You can also find the document from Android Studio -> Help -> Default Keymap Reference

The shortcut to go to a particular line number on Android Studio is

On Mac : Cmd + L

On Linux : Ctrl + L

On Windows : Ctrl + G

After this key in the line number in the dialog box that pops up.There is an option to insert the column number as well, but it is not necessary.

  • If you are in the specific file,

You can use Ctrl + G . And insert the line You wanted. If you want to go to a specific column of the lineNo you can insert lineNo : columnNo .

在此处输入图像描述

  • If you are in some file and you want to navigate into some line of a some other file,

You can simply use default navigation shortcut Ctrl + Shift + N , and insert fileName : lineNo .

NOTE : You don't need to insert the whole name of the file, some text that enables intellij to uniquely identify your file would be good enough. Your input text might turn into red color. But it works. :)

在此处输入图像描述

对于 Windows 用户,快捷键是:Ctrl + G

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM