Salil Surendran
- 活动总数 43
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 18
-
创建于 Formatting Scala code in IntelliJ
I have Scala code like this: def myMethod(myInt: Int, myFloat: Float, myString: String): Unit = { //method body}I want to format it exactly like this if the line is too long: def myMethod( myInt... -
创建于 How to see the function body while debugging Scala in Intellij?
Hello, When I debug Scala via IntelliJ and stop at a breakpoint, I see the function in 'Variables' box as this : nextOperation = <function2>. How do I go to the actual code of the function 'nextOpe... -
创建于 Keystrokes going to IntelliJ instead of terminal in IntelliJ
已回答I often startup vi in a terminal in IntelliJ. When I press shortcut keys like 'Ctrl + N' etc. IntelliJ picks it up as shortcut keys and open up a dialog etc. Anyway to get around this? -
已编辑于 Any way to navigate intellij open file dialog like a terminal
已回答Is there any way to navigate an intellij open file dialog via the keyboards for eg. I can go to /home/salilsurendran in a terminal just by hitting /ho/sal and use autocomplete to get ... -
创建于 IntelliJ reorganizes imports
已回答Hello, When I hit 'Ctrl + Shift + O' in IntelliJ it removes unused imports but also reorder imports that messes up code reviews etc. How do I prevent it from reordering imports? -
创建于 Any way to convert a code block into a lamdba?
已回答Hello, There is code likethreadpool.submit(new Runnable() { @Override public void run() { //Code to run }}Any way to to automatically convert it lambda like :threadPool.submit(() -> { ... -
创建于 Getting error message 'Cannot import anything from project'
已回答Hello, I am using IntelliJ 15 Ultimate Edition and whenever I try to open an iml file created from a previous version of IntelliJ I get the message 'Cannot import anything from project'. How do I... -
创建于 IntelliJ code style inspections
I have setup code style rules for Java in IntelliJ -> Preferences -> Code Style -> Java. Is there a way I can have IntelliJ highlight any of the rules being broken in the code in pre-existing code?... -
创建于 Putting conditional breakpoints in lambda expressions in IntelliJ
Hello, How can I put a conditional breakpoint in a lambda expression in IntelliJ. For eg. I have a statement stream().map(s -> s * 2).forEach(...). I want to put a conditional breakpoint s == 5 ... -
创建于 How to open a terminal via intellij in the selected folder
I want to right click on a file in intellij and open the terminal there in mac. I tried 'External Tools' but doesn't open the terminal in the selected directory even though I set $FileDir$ as the w...