Shortcut | Description |
---|---|
Ctrl+Shift+P | command prompt |
Ctrl+Alt+P | switch project |
Ctrl+P | go to file |
Ctrl+G | go to line |
Instructions on how to reproduce sbt global plugin reload bug. Related links:
https://groups.google.com/forum/?hl=en&fromgroups=#!topic/simple-build-tool/x33MRCzNpww sbt/sbt#272
~/SbtHome/ # used as sbt.global.base
plugins/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- IF PEN IS PRIVATE --> | |
<!-- <meta name="robots" content="noindex"> --> | |
<!-- END --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.halfcup.scala | |
import scala.annotation._ | |
object TestTailRec { | |
def main(args: Array[String]): Unit = { | |
val list = List("one", "two", "three", "four", "five", "six", "seven", "eight", "nine","ten") | |
def maxWidth(s: List[String]) = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.halfcup.scala.learn.vary | |
class Toy{ | |
override def toString():String = { | |
"Toy" | |
} | |
} | |
class Ball extends Toy{ | |
override def toString():String = { |