Sam Reid

- Total activity 76
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 24
-
-
Sam Reid commented, -
Sam Reid created a post, Key shortcut for git "commit and push"
In IDEA 14, I used to be able to do OPTION+P for Git commit and Push from the git commit dialog. (I'm not sure if I assigned that or if it came out-of-the-box). In IDEA 15 that keystroke no longe... -
Sam Reid created a post, Code formatting in IDEA 14 Public Preview (138.2458.8) differs from 13.1.4 (with same style file)
After formatting code in IntelliJ IDEA 13.1.4, then updating to IDEA 14 Public Preview (138.2458.8) and formatting with the same code formatter style settings, about 2/3 of my project files are dif... -
Sam Reid created a post, Automatic commit messages
I had an idea for a feature and wanted to ask if (a) it might be useful (b) if there is already something like it in IDEA. Sometimes during refactoring, I just make a small number of automated cha... -
-
Sam Reid created a post, Subversion 1.7 working on 114.145 but not in 114.243
I'm using a Subversion 1.7 working copy, and working very well with IDEA EAP 114.145. But today when I tried updating to 114.243, it didn't recognize any of my existing changes on my working copy,... -
Sam Reid created a post, Make performance in 11.0.1
When I upgraded from the latest IDEA 10 to 11.0.1, my "make" time went from <1 second to >10 seconds, even when there are no changes or one trivial change. Is there anything I can do to get back t... -
Sam Reid created a post, Remove curly braces in for ... yield expression?
Hi there, How can I remove the curly braces in my for .. yield expressions? If I type in this:for (x <- list) yield x * 2The formatter will change it to:for (x <- list) yield { x*2}At that point... -
Sam Reid created a post, println and classOf[] are marked red unless prefixed with Predef
I noticed that predef methods like println and classOf are marked as red unless I explicitly put Predef.println() or Predef.classOf[]. For example, in this code there are two red tokens:object Tes...