Salil Surendran

- Total activity 37
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 17
-
Salil Surendran created a post, AnsweredIntelliJ not compiling before execution
How do I compile the entire project before it executes any file for a maven project. I create a Run configuration for single java class and I have to enter mvn:compile in the run configuration for ... -
-
Salil Surendran created a post, AnsweredHow to connect to Zeppelin Server with a remote proxy
Hello, There is no public IP for my EMR cluster and so I create a tunnel to a bastion and then connect to Zeppelin using a Firefox plugin like FoxyProxy. The tunnel is created using: ssh -o Pro... -
Salil Surendran created a post, AnsweredAutocomplete left side of the equation
Consider, I have a method private List<String> getListOfStrings(){ } Is there a way for me to type in getListOfStrings(); Enter a shortcut and Intellij to autocomplete by adding 'List<String> li... -
Salil Surendran created a post, AnsweredShortcut key to auto-complete covering the next word.
Hello,I am working on IntelliJ for MacOS. I am looking at options to auto-complete where the auto-complete also covers the next word. I know two shortcut keys to auto-complete right now. One is 'Ta... -
-
Salil Surendran created a post, AnsweredAngular 2 Typescript Live Template doesn't recognize ts files in IntelliJ IDEA Community Edition
I installed Angular 2 Typescript Live Template in IntelliJ IDEA Community Edition but even after restart it doesn't do any kind of syntax highlighting of angular script in ts files. Does this plug... -
Salil Surendran created a post, Autocomplete parenthesis around a variable in IntelliJ Scala
I am using IntelliJ with the Scala plugin. Consider a string like "test" and I want to wrap it in System.out.println("test"); I enter System.out.pri which brings up the auto-complete popup with va... -
Salil Surendran created a post, Can you debug an sbt build in IntelliJ
Hello, I have an sbt build that is giving me some problems. is there a way to debug it in IntelliJ? -
Salil Surendran created a post, 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...