src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/LineReader.java
changeset 58903 eeb1c0da2126
parent 52938 5ff7480c9e28
equal deleted inserted replaced
58902:197238c30630 58903:eeb1c0da2126
     2  * Copyright (c) 2002-2018, the original author or authors.
     2  * Copyright (c) 2002-2018, the original author or authors.
     3  *
     3  *
     4  * This software is distributable under the BSD license. See the terms of the
     4  * This software is distributable under the BSD license. See the terms of the
     5  * BSD license in the documentation provided with this software.
     5  * BSD license in the documentation provided with this software.
     6  *
     6  *
     7  * http://www.opensource.org/licenses/bsd-license.php
     7  * https://opensource.org/licenses/BSD-3-Clause
     8  */
     8  */
     9 package jdk.internal.org.jline.reader;
     9 package jdk.internal.org.jline.reader;
    10 
    10 
    11 import java.io.InputStream;
    11 import java.io.InputStream;
    12 import java.util.Map;
    12 import java.util.Map;
    93     //
    93     //
    94     String CALLBACK_INIT = "callback-init";
    94     String CALLBACK_INIT = "callback-init";
    95     String CALLBACK_FINISH = "callback-finish";
    95     String CALLBACK_FINISH = "callback-finish";
    96     String CALLBACK_KEYMAP = "callback-keymap";
    96     String CALLBACK_KEYMAP = "callback-keymap";
    97 
    97 
       
    98     String ACCEPT_AND_INFER_NEXT_HISTORY = "accept-and-infer-next-history";
       
    99     String ACCEPT_AND_HOLD = "accept-and-hold";
    98     String ACCEPT_LINE = "accept-line";
   100     String ACCEPT_LINE = "accept-line";
       
   101     String ACCEPT_LINE_AND_DOWN_HISTORY = "accept-line-and-down-history";
    99     String ARGUMENT_BASE = "argument-base";
   102     String ARGUMENT_BASE = "argument-base";
   100     String BACKWARD_CHAR = "backward-char";
   103     String BACKWARD_CHAR = "backward-char";
   101     String BACKWARD_DELETE_CHAR = "backward-delete-char";
   104     String BACKWARD_DELETE_CHAR = "backward-delete-char";
   102     String BACKWARD_DELETE_WORD = "backward-delete-word";
   105     String BACKWARD_DELETE_WORD = "backward-delete-word";
   103     String BACKWARD_KILL_LINE = "backward-kill-line";
   106     String BACKWARD_KILL_LINE = "backward-kill-line";