sbt clear screen command

筅森魡賤 提交于 2020-01-10 08:11:14

问题


I am learning sbt build tool. I use interpreted sbt. I run lot of commands and get lot of output which clutters up the screen.

The question is any command for clear screen for sbt interpretive console , like cls in DOS shell or clear in bash

My googling skill did not helped

update : i am using console2 with windows power shell


回答1:


In bash you should be able to use Ctrl+L, on OSX you can also use Cmd+K.




回答2:


This specifically helps when you're doing something in continuous mode, ala `compile:

maxErrors := 5
triggeredMessage := Watched.clearWhenTriggered

This works as of 0.13.7. The second line clears the screen before each command runs. The first line limits the number of errors. With this config, you only ever have one screen full of errors to work through. Obviously could adjust maxErrors depending on your sbt window.




回答3:


Sbt will load ~/.sbt/1.0/build.sbt as global settings.

commands += Command.command("cls") { state =>
  print("\033c")
  state
}

Then you can run any commands with cls. For example:

  • ~;cls;compile
  • ~;cls;testOnly


来源:https://stackoverflow.com/questions/16734804/sbt-clear-screen-command

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!