zellij/src/common
a-kenji 79a4f76e93 Add more Functionality to Unbind
The default keybinds can be unbound either for a specific mode, or for every mode.
It supports either a list of `keybinds`, or a bool indicating that every keybind
should be unbound:

```
keybinds:
    unbind: true
```
Will unbind every default binding.

```
keybinds:
    unbind: [ Ctrl: 'p']
```
Will unbind every default `^P` binding for each mode.
```
keybinds:
    normal:
        - unbind: true
```
Will unbind every default keybind for the `normal` mode.
```
keybinds:
    normal:
        - unbind: [ Alt: 'n', Ctrl: 'g']
```
Will unbind every default keybind for `n` and `^g` for the `normal` mode.
2021-05-07 10:51:35 +02:00
..
input Add more Functionality to Unbind 2021-05-07 10:51:35 +02:00
utils explicitly set file and directory permissions 2021-05-06 22:01:27 +05:30
command_is_executing.rs Refactor CommandIsExecuting to have a single variant 2021-05-04 20:48:16 +05:30
errors.rs remove Split, OpenFile and MoveFocus from CliArgs 2021-05-04 20:48:16 +05:30
ipc.rs Introduce IpcReceiverWIthContext and move ipc stuff to common/ipc.rs 2021-05-04 20:48:17 +05:30
mod.rs Introduce IpcReceiverWIthContext and move ipc stuff to common/ipc.rs 2021-05-04 20:48:17 +05:30
os_input_output.rs explicitly set file and directory permissions 2021-05-06 22:01:27 +05:30
pty_bus.rs Fix after rebase 2021-05-04 20:48:17 +05:30
screen.rs explicitly set file and directory permissions 2021-05-06 22:01:27 +05:30
setup.rs explicitly set file and directory permissions 2021-05-06 22:01:27 +05:30
wasm_vm.rs Fix after rebase 2021-05-04 20:48:17 +05:30