io.github.libtmux.Keys.Keys
Java
- Python Unavailable
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- io.github.libtmux.Keys
- Package
- io.github.libtmux:libtmux
- Source
- libtmux/src/main/java/io/github/libtmux/Keys.java
-
The server's key bindings, in one key table or across all of them.
tmux keeps bindings in named tables:
prefix, pressed after the prefix key, is where a binding goes unless another table is named;rootis pressed without it; the copy-mode tables belong to copy mode.Server#keys()answers forprefixwhen binding and for every table when listing;#innames one.Examples
server.keys().bind("F12", List.of("display-message", "hello"));server.keys().in("root").bind("F11", List.of("next-window"));
5 declared, 0 inherited