Uses of Interface
org.jline.reader.Binding
-
Packages that use Binding Package Description org.jline.console JLine Console package provides a framework for building interactive command-line applications.org.jline.reader JLine 3 Reader Package - Core components for building interactive command-line interfaces.org.jline.reader.impl JLine 3 Reader Implementation Package.org.jline.widget JLine Widget package provides a framework for creating and managing widgets for JLine's LineReader. -
-
Uses of Binding in org.jline.console
Classes in org.jline.console that implement Binding Modifier and Type Class Description static classConsoleEngine.WidgetCreatorClass for creating widgets from console functions. -
Uses of Binding in org.jline.reader
Subinterfaces of Binding in org.jline.reader Modifier and Type Interface Description interfaceWidgetA Widget represents an action that can be bound to a key sequence in the LineReader.Classes in org.jline.reader that implement Binding Modifier and Type Class Description classMacroA macro that executes a sequence of keystrokes when invoked.classReferenceA reference to aWidgetby name.Methods in org.jline.reader that return types with arguments of type Binding 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.KeyMap<Binding>LineReader. getKeys()Returns the currently active key map. -
Uses of Binding in org.jline.reader.impl
Fields in org.jline.reader.impl with type parameters of type Binding Modifier and Type Field Description protected java.util.Map<java.lang.String,KeyMap<Binding>>LineReaderImpl. keyMapsThe terminal keys mappingMethods in org.jline.reader.impl that return Binding Modifier and Type Method Description BindingLineReaderImpl. readBinding(KeyMap<Binding> keys)Read from the input stream and decode an operation from the key map.BindingLineReaderImpl. readBinding(KeyMap<Binding> keys, KeyMap<Binding> local)Methods in org.jline.reader.impl that return types with arguments of type Binding Modifier and Type Method Description java.util.Map<java.lang.String,KeyMap<Binding>>LineReaderImpl. defaultKeyMaps()KeyMap<Binding>LineReaderImpl. dumb()KeyMap<Binding>LineReaderImpl. emacs()java.util.Map<java.lang.String,KeyMap<Binding>>LineReaderImpl. getKeyMaps()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()Method parameters in org.jline.reader.impl with type arguments of type Binding Modifier and Type Method Description BindingLineReaderImpl. readBinding(KeyMap<Binding> keys)Read from the input stream and decode an operation from the key map.BindingLineReaderImpl. readBinding(KeyMap<Binding> keys, KeyMap<Binding> local) -
Uses of Binding in org.jline.widget
Methods in org.jline.widget that return types with arguments of type Binding Modifier and Type Method Description KeyMap<Binding>Widgets. getKeyMap()Get lineReader's Main KeyMap
-