forked from extern/nushell
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
37 lines
646 B
Markdown
37 lines
646 B
Markdown
---
|
|
title: keybindings list
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
List available options that can be used to create keybindings
|
|
|
|
## Signature
|
|
|
|
```> keybindings list --modifiers --keycodes --modes --events --edits```
|
|
|
|
## Parameters
|
|
|
|
- `--modifiers`: list of modifiers
|
|
- `--keycodes`: list of keycodes
|
|
- `--modes`: list of edit modes
|
|
- `--events`: list of reedline event
|
|
- `--edits`: list of edit commands
|
|
|
|
## Examples
|
|
|
|
Get list of key modifiers
|
|
```shell
|
|
> keybindings list -m
|
|
```
|
|
|
|
Get list of reedline events and edit commands
|
|
```shell
|
|
> keybindings list -e -d
|
|
```
|
|
|
|
Get list with all the available options
|
|
```shell
|
|
> keybindings list
|
|
```
|