Sam Reid

- 活动总数 76
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 24
-
-
Sam Reid 进行了评论, -
Sam Reid 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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 创建了一个帖子, 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...