panel: ${panel}
Key bindings
The ACLI shell supports these key bindings when editing a line:
| Key Binding | Description |
|--------------------|-------------------------------------------------|
| Ctrl + A | Go to the beginning of the line (Home) |
| Ctrl + E | Go to the end of the line (End) |
| Ctrl + P | Previous command (Up arrow) |
| Ctrl + N | Next command (Down arrow) |
| Ctrl + F | Forward one character |
| Ctrl + B | Backward one character |
| Ctrl + D | Delete character under the cursor |
| Ctrl + H | Delete character before the cursor (Backspace) |
| Ctrl + W | Cut the word before the cursor to the clipboard |
| Ctrl + K | Cut the line after the cursor to the clipboard |
| Ctrl + U | Cut the line before the cursor to the clipboard |
| Ctrl + L | Clear the screen |
{{ if eq .os "windows" -}}
| Ctrl + C | Exit shell (Ctrl + D, /exit) |
{{ else -}}
| Ctrl + C | Cancel current line |
{{ end -}}
| Ctrl + D | Exit shell (/exit) |
When a suggestion prompt appears, the following also apply:
| Key Binding | Description |
|--------------------|-------------------------------------------------|
| Tab | Select next suggestion (Down arrow) |
| Shift + Tab | Select previous suggestion (Up arrow) |
| Space | Choose currently selected suggestion |