Uses of Class
org.jline.keymap.KeyMap
-
Packages that use KeyMap Package Description org.jline.keymap JLine 3 Keymap Package - Components for handling keyboard input and key bindings.org.jline.reader JLine 3 Reader Package - Core components for building interactive command-line interfaces.org.jline.reader.impl JLine 3 Reader Implementation Package. -
-
Uses of KeyMap in org.jline.keymap
Methods in org.jline.keymap with parameters of type KeyMap Modifier and Type Method Description <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)
Reads a key binding from the input stream using the specified KeyMaps.<T> T
BindingReader. readBinding(KeyMap<T> keys, KeyMap<T> local, boolean block)
Reads a key binding from the input stream using the specified KeyMaps. -
Uses of KeyMap in org.jline.reader
Methods in org.jline.reader that return KeyMap Modifier and Type Method Description KeyMap<Binding>
LineReader. getKeys()
Returns the currently active key map.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()
Returns the default key maps used by the LineReader.java.util.Map<java.lang.String,KeyMap<Binding>>
LineReader. getKeyMaps()
Returns all key maps registered with this LineReader. -
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. dumb()
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 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)
-