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

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

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

History.index介绍

暂无

代码示例

代码示例来源:origin: prestodb/presto

int historyIndex = parseInt(command.substring(1));
History history = reader.getHistory();
if ((historyIndex <= 0) || (historyIndex > history.index())) {
  System.err.println("Command does not exist");
  continue;

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

/**
 * Search backwards in history from the current position.
 *
 * @param searchTerm substring to search for.
 * @return index where the substring has been found, or -1 else.
 */
public int searchBackwards(String searchTerm) {
  return searchBackwards(searchTerm, history.index());
}

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

/**
 * Search forwards in history from the current position.
 *
 * @param searchTerm substring to search for.
 * @return index where the substring has been found, or -1 else.
 */
public int searchForwards(String searchTerm) {
  return searchForwards(searchTerm, history.index());
}

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

rep = history.get(history.index() - 1).toString();
  break;
case '#':
  String previous = history.get(history.index() - 1).toString().trim();
  int lastSpace = previous.lastIndexOf(' ');
  if(lastSpace != -1) {
      rep = (history.get(history.index() - idx)).toString();
    } else {
      throw new IllegalArgumentException((neg ? "!-" : "!") + str.substring(i1, i) + ": event not found");
    if (idx > history.index() - history.size() && idx <= history.index()) {
      rep = (history.get(idx - 1)).toString();
    } else {
  String ss = str.substring(i);
  i = str.length();
  idx = searchBackwards(ss, history.index(), true);
  if (idx < 0) {
    throw new IllegalArgumentException("!" + ss + ": event not found");
String s1 = str.substring(i + 1, i1);
String s2 = str.substring(i1 + 1, i2);
String s = history.get(history.index() - 1).toString().replace(s1, s2);
sb.append(s);
i = i2 + 1;

代码示例来源: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: jline/jline

int end   = history.index();
int start = (end <= history.size()) ? 0 : end - history.size();

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

/**
 * Search forwards in history from the current position.
 *
 * @param searchTerm substring to search for.
 * @return index where the substring has been found, or -1 else.
 */
public int searchForwards(String searchTerm) {
  return searchForwards(searchTerm, history.index());
}

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

/**
 * Search backwards in history from the current position.
 *
 * @param searchTerm substring to search for.
 * @return index where the substring has been found, or -1 else.
 */
public int searchBackwards(String searchTerm) {
  return searchBackwards(searchTerm, history.index());
}

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

rep = history.get(history.index() - 1).toString();
  break;
case '#':
  String previous = history.get(history.index() - 1).toString().trim();
  int lastSpace = previous.lastIndexOf(' ');
  if(lastSpace != -1) {
      rep = (history.get(history.index() - idx)).toString();
    } else {
      throw new IllegalArgumentException((neg ? "!-" : "!") + str.substring(i1, i) + ": event not found");
    if (idx > history.index() - history.size() && idx <= history.index()) {
      rep = (history.get(idx - 1)).toString();
    } else {
  String ss = str.substring(i);
  i = str.length();
  idx = searchBackwards(ss, history.index(), true);
  if (idx < 0) {
    throw new IllegalArgumentException("!" + ss + ": event not found");
String s1 = str.substring(i + 1, i1);
String s2 = str.substring(i1 + 1, i2);
String s = history.get(history.index() - 1).toString().replace(s1, s2);
sb.append(s);
i = i2 + 1;

代码示例来源:origin: prestosql/presto

int historyIndex = parseInt(command.substring(1));
History history = reader.getHistory();
if ((historyIndex <= 0) || (historyIndex > history.index())) {
  System.err.println("Command does not exist");
  continue;

代码示例来源:origin: com.facebook.presto/presto-cli

int historyIndex = parseInt(command.substring(1));
History history = reader.getHistory();
if ((historyIndex <= 0) || (historyIndex > history.index())) {
  System.err.println("Command does not exist");
  continue;

代码示例来源:origin: io.prestosql/presto-cli

int historyIndex = parseInt(command.substring(1));
History history = reader.getHistory();
if ((historyIndex <= 0) || (historyIndex > history.index())) {
  System.err.println("Command does not exist");
  continue;

代码示例来源:origin: uk.co.nichesolutions.presto/presto-cli

int historyIndex = parseInt(command.substring(1));
History history = reader.getHistory();
if ((historyIndex <= 0) || (historyIndex > history.index())) {
  System.err.println("Command does not exist");
  continue;

代码示例来源: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
}

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

int end   = history.index();
int start = (end <= history.size()) ? 0 : end - history.size();

相关文章