jline.console.history.History.moveToEnd()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(159)

本文整理了Java中jline.console.history.History.moveToEnd()方法的一些代码示例,展示了History.moveToEnd()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。History.moveToEnd()方法的具体详情如下:
包路径:jline.console.history.History
类名称:History
方法名:moveToEnd

History.moveToEnd介绍

暂无

代码示例

代码示例来源:origin: oldmanpushcart/greys-anatomy

public GreysConsole(InetSocketAddress address) throws IOException {
  this.console = initConsoleReader();
  this.history = initHistory();
  this.out = console.getOutput();
  this.history.moveToEnd();
  this.console.setHistoryEnabled(true);
  this.console.setHistory(history);
  this.console.setExpandEvents(false);
  this.socket = connect(address);
  // 关闭会话静默
  disableSilentOfSession();
  // 初始化自动补全
  initCompleter();
  this.isRunning = true;
  activeConsoleReader();
  socketWriter.write("version\n");
  socketWriter.flush();
  loopForWriter();
}

代码示例来源:origin: jline/jline

history.moveToEnd();

代码示例来源:origin: jline/jline

/**
 * Possible states in which the current readline operation may be in.
 */
private static enum State {
  /**
   * The user is just typing away
   */
  NORMAL,
  /**
   * In the middle of a emacs seach
   */
  SEARCH,
  FORWARD_SEARCH,
  /**
   * VI "yank-to" operation ("y" during move mode)
   */
  VI_YANK_TO,
  /**
   * VI "delete-to" operation ("d" during move mode)
   */
  VI_DELETE_TO,
  /**
   * VI "change-to" operation ("c" during move mode)
   */
  VI_CHANGE_TO
}

代码示例来源:origin: com.typesafe.sbt/incremental-compiler

history.moveToEnd();

代码示例来源:origin: com.typesafe.sbt/incremental-compiler

/**
 * Possible states in which the current readline operation may be in.
 */
private static enum State {
  /**
   * The user is just typing away
   */
  NORMAL,
  /**
   * In the middle of a emacs seach
   */
  SEARCH,
  FORWARD_SEARCH,
  /**
   * VI "yank-to" operation ("y" during move mode)
   */
  VI_YANK_TO,
  /**
   * VI "delete-to" operation ("d" during move mode)
   */
  VI_DELETE_TO,
  /**
   * VI "change-to" operation ("c" during move mode)
   */
  VI_CHANGE_TO
}

相关文章