Uses of Class
org.jline.keymap.KeyMap
-
Packages that use KeyMap Package Description org.jline.builtins org.jline.keymap org.jline.reader JLine 3.org.jline.reader.impl org.jline.widget -
-
Uses of KeyMap in org.jline.builtins
Fields in org.jline.builtins declared as KeyMap Modifier and Type Field Description private KeyMap<java.lang.Object>
Tmux. keyMap
protected KeyMap<Less.Operation>
Less. keys
protected KeyMap<Nano.Operation>
Nano. keys
private KeyMap<TTop.Operation>
TTop. keys
Methods in org.jline.builtins that return KeyMap Modifier and Type Method Description protected KeyMap<java.lang.Object>
Tmux. createEmptyKeyMap(java.lang.String prefix)
protected KeyMap<java.lang.Object>
Tmux. createKeyMap(java.lang.String prefix)
KeyMap<TTop.Operation>
TTop. getKeys()
Methods in org.jline.builtins with parameters of type KeyMap Modifier and Type Method Description private void
Less. bindKeys(KeyMap<Less.Operation> map)
private void
TTop. bindKeys(KeyMap<TTop.Operation> map)
private Nano.Operation
Nano. readOperation(KeyMap<Nano.Operation> keymap)
-
Uses of KeyMap in org.jline.keymap
Methods in org.jline.keymap with parameters of type KeyMap Modifier and Type Method Description private static <T> void
KeyMap. bind(KeyMap<T> map, java.lang.CharSequence keySeq, T function, boolean onlyIfNotBound)
private static <T> void
KeyMap. doGetBoundKeys(KeyMap<T> keyMap, java.lang.String prefix, java.util.Map<java.lang.String,T> bound)
<T> T
BindingReader. readBinding(KeyMap<T> keys)
Read from the input stream and decode an operation from the key map.<T> T
BindingReader. readBinding(KeyMap<T> keys, KeyMap<T> local)
<T> T
BindingReader. readBinding(KeyMap<T> keys, KeyMap<T> local, boolean block)
private static <T> T
KeyMap. unbind(KeyMap<T> map, java.lang.CharSequence keySeq)
-
Uses of KeyMap in org.jline.reader
Methods in org.jline.reader that return KeyMap Modifier and Type Method Description KeyMap<Binding>
LineReader. getKeys()
Methods in org.jline.reader that return types with arguments of type KeyMap Modifier and Type Method Description java.util.Map<java.lang.String,KeyMap<Binding>>
LineReader. defaultKeyMaps()
java.util.Map<java.lang.String,KeyMap<Binding>>
LineReader. getKeyMaps()
-
Uses of KeyMap in org.jline.reader.impl
Fields in org.jline.reader.impl with type parameters of type KeyMap Modifier and Type Field Description protected java.util.Map<java.lang.String,KeyMap<Binding>>
LineReaderImpl. keyMaps
The terminal keys mappingMethods in org.jline.reader.impl that return KeyMap Modifier and Type Method Description KeyMap<Binding>
LineReaderImpl. emacs()
KeyMap<Binding>
LineReaderImpl. getKeys()
KeyMap<Binding>
LineReaderImpl. menu()
KeyMap<Binding>
LineReaderImpl. safe()
KeyMap<Binding>
LineReaderImpl. viCmd()
KeyMap<Binding>
LineReaderImpl. viInsertion()
KeyMap<Binding>
LineReaderImpl. viOpp()
KeyMap<Binding>
LineReaderImpl. visual()
Methods in org.jline.reader.impl that return types with arguments of type KeyMap Modifier and Type Method Description java.util.Map<java.lang.String,KeyMap<Binding>>
LineReaderImpl. defaultKeyMaps()
java.util.Map<java.lang.String,KeyMap<Binding>>
LineReaderImpl. getKeyMaps()
Methods in org.jline.reader.impl with parameters of type KeyMap Modifier and Type Method Description private void
LineReaderImpl. bind(KeyMap<Binding> map, java.lang.String widget, java.lang.CharSequence... keySeqs)
private void
LineReaderImpl. bind(KeyMap<Binding> map, java.lang.String widget, java.lang.Iterable<? extends java.lang.CharSequence> keySeqs)
private void
LineReaderImpl. bind(KeyMap<Binding> map, Widget widget, java.lang.CharSequence... keySeqs)
private void
LineReaderImpl. bindArrowKeys(KeyMap<Binding> map)
private void
LineReaderImpl. bindConsoleChars(KeyMap<Binding> keyMap, Attributes attr)
Bind special chars defined by the terminal instead of the default bindingsprivate void
LineReaderImpl. bindKeys(KeyMap<Binding> emacs)
protected <T> T
LineReaderImpl. doReadBinding(KeyMap<T> keys, KeyMap<T> local)
Binding
LineReaderImpl. readBinding(KeyMap<Binding> keys)
Read from the input stream and decode an operation from the key map.Binding
LineReaderImpl. readBinding(KeyMap<Binding> keys, KeyMap<Binding> local)
private void
LineReaderImpl. rebind(KeyMap<Binding> keyMap, java.lang.String operation, java.lang.String prevBinding, char newBinding)
-
Uses of KeyMap in org.jline.widget
Methods in org.jline.widget that return KeyMap Modifier and Type Method Description KeyMap<Binding>
Widgets. getKeyMap()
-