Eclipse's Ctrl+1 in IntelliJ and Android Studio

前端 未结 5 873
鱼传尺愫
鱼传尺愫 2020-12-25 09:42

I really like the Ctrl+1 shortcut (hints for errors and mini refactorings) in Eclipse. Is there an equivalent for it in IntelliJ and Android Studio?

相关标签:
5条回答
  • 2020-12-25 09:44

    Alt+Enter

    0 讨论(0)
  • 2020-12-25 09:45

    I also don't think ctrl+enter is the answer.

    I'd say ctrl+alt+shift+t (Refactor this...) which I remapped to ctrl+1 is the closest thing to ctrl+1 from eclipse. It allows you to inline, extract code (variable, method, field etc.), move code, pull members etc.

    0 讨论(0)
  • 2020-12-25 09:46

    Personally I don't think AltEnter is particularly correct. Ctrl1 does lots of code generation like generating local variables given a method call etc.

    CtrlAltV ... generates a local variable

    CtrlAltF ... generate a field

    AltInsert ... generate (drop down menu to generate all sorts)

    Now, unrelated to the question but maybe helpful and in the same ball park is that the "foreach" short cut in IntelliJ is iter rather than for.

    0 讨论(0)
  • 2020-12-25 09:49

    Ctrl + 1 was one of my favorite shortcuts but unfortunately there is no exact equivalent shortcut for that. You can search for Quick fix in: File-->Settings-->Keymap, but you'll find nothing.

    Although many people would say Alt + Enter is the nearest answer. but I think there are better equivalents such as Ctrl+Alt+Shift+t. It will give you some magic options.

    You can also remap it to Ctrl + 1 by going to:

    File-->Settings-->Keymap

    0 讨论(0)
  • 2020-12-25 09:52

    Try pressing CTRL + ALT + v.

    It will give the return type exactly of that method.

    0 讨论(0)
提交回复
热议问题