0

テキスト(コード)があるとします:

  def text = ParamMenuable.this.linkText
  def locPath: List[LocPath] = ParamMenuable.this.path
  def parser = ParamMenuable.this.parser
  def listToFrom(in: List[String]): Box[String] = in.headOption

そしていくつかのキーショーツ:

arrow-left/right/up/down:  move cursor to left/right/up/down for one char

ctrl + d: duplicate current line
ctrl + arrow-left/right/up/down:  move cursor to left/right/up/down for one word
ctrl + y: delete current line
... all kinds of key shorts you usually used

そして、ターゲットテキストは次のとおりです。

  def text() = {
     ParamMenuable.this.linkText
  }
  def locPath: List[LocPath] = ParamMenuable.this.path
  def locPath22222: List[LocPath] = ParamMenuable.this.path
  private def parser = {
      return ParamMenuable.this.parser;
  }

私の質問は、ソース テキストをターゲットに変換するために、少なくとも何回のキー ショートを押す必要があるかということです。あなたはそれをより良くするために適切なキーショーツを選ぶことができます.

4

2 に答える 2