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 |
| Meta + d | Delete from cursor to end of word |
| Meta + f | Forward one word |
{{ if ne .os "windows" -}}
| Meta + right-arrow | Forward one word |
{{ end -}}
| Meta + b | Backward one word |
{{ if ne .os "windows" -}}
| Meta + left-arrow | Backward one word |
{{ end -}}
{{ if ne .os "windows" -}}
| Ctrl + c | Cancel current line |
{{ else -}}
| Ctrl + c | Exit shell (Ctrl + D, /exit) |
{{ 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 |