2

最後に発行されたコマンドを再起動するための短い sbt コマンドまたはキーボード ショートカットはありますか? これを繰り返し実行しなければならない状況に陥っています。

> test-only my.long.package.etc.class.name

そして、コピペはちょっと面倒です。IntelliJ IDEA 内から sbt コンソールを使用しているため、履歴をスクロールするカーソルアップが機能しません。

4

2 に答える 2

12

あなたがしたい!!。のヘルプを表示するには、プロンプトで次のように入力しますsbthelp

> help

  help                         Displays this help message or prints detailed help on requested commands (run 'help <command>').
  about                        Displays basic information about sbt and the build.
  reload                       (Re)loads the project in the current directory
  settings                     Lists the settings defined for the current project.
  tasks                        Lists the tasks defined for the current project.
  projects                     Lists the names of available projects or temporarily adds/removes extra builds to the session.
  project                      Displays the current project or changes to the provided `project`.
  set                          Evaluates a Setting and applies it to the current project.
  session                      Manipulates session settings.  For details, run 'help session'.
  inspect                      Prints the value for 'key', the defining scope, delegates, related definitions, and dependencies.
  ; <command> (; <command>)*   Runs the provided semicolon-separated commands.
  ~ <command>                  Executes the specified command whenever source files change.
  last                         Displays output from a previous command or the output from a specific task.
  last-grep                    Shows lines from the last output for 'key' that match 'pattern'.
  exit                         Terminates the build.
  show <key>                   Displays the result of evaluating the setting or task associated with 'key'.

More command help available using 'help <command>' for:
  !, -, <, alias, append, apply, eval, iflast, reboot, shell

次に、次のヘルプを取得します!

> !
History commands:
   !!    Execute the last command again
   !:    Show all previous commands
   !:n    Show the last n commands
   !n    Execute the command with index n, as shown by the !: command
   !-n    Execute the nth command before this one
   !string    Execute the most recent command starting with 'string'
   !?string    Execute the most recent command containing 'string'
于 2012-10-05T18:02:27.497 に答える
2

IDEA の sbt プラグインの最新バージョン 1.4.0 にアップグレードします。これは矢印キーの履歴をサポートしているためです。

于 2012-10-05T21:22:27.977 に答える