Dietline
Dietline supports two major configuration modes : Emacs-mode and Vi-mode.
Autocompletion
In the every shell and radare2 command autocompletion is supported. There are multiple modes of it - files, flags, and SDB keys/namespaces. To provide the easy way to select possible completion options the scrollable popup widget is available. It can be enabled with scr.prompt.popup
, just set it to the true
.
Emacs (default) mode
Ctrl-a
- move to the beginning of the lineCtrl-e
- move to the end of the lineCtrl-b
- move one character backwardCtrl-f
- move one character forward
Deleting
Ctrl-w
- delete the previous wordCtrl-u
- delete the whole lineCtrl-d
- delete a character to the rightAlt-d
- cuts the character after the cursor
Ctrl-k
- kill the text from point to the end of the line.Ctrl-x
- kill backward from the cursor to the beginning of the current line.- - kill from point to the end of the current word, or if between words, to the end of the next word. Word boundaries are the same as forward-word.
Ctrl-w
- kill the word behind point, using white space as a word boundary. The killed text is saved on the kill-ring.Ctrl-y
- yank the top of the kill ring into the buffer at point.Ctrl-]
- rotate the kill-ring, and yank the new top. You can only do this if the prior command is yank or yank-pop.
History
Ctrl-r
- the reverse search in the command history
Vi mode
Radare2 also comes with in vi mode that can be enabled by toggling scr.prompt.vi
. The various keybindings available in this mode are:
ESC
- enter into the control modei
- enter into the insert mode
Moving
j
- acts like up arrow keyk
- acts like down arrow keya
- move cursor forward and enter into insert modeI
- move to the beginning of the line and enter into insert modeA
- move to the end of the line and enter into insert mode0
- move to the beginning of the line- - move to the end of the line
h
- move one character backwardl
- move one character forward
x
- cuts the characterdw
- delete the current worddiw
- deletes the current word.db
- delete the previous wordD
- delete the whole linedh
- delete a character to the leftdl
- delete a character to the rightd$
- kill the text from point to the end of the line.d^
- kill backward from the cursor to the beginning of the current line.de
- kill from point to the end of the current word, or if between words, to the end of the next word. Word boundaries are the same as forward-word.p
- yank the top of the kill ring into the buffer at point.c
- acts similar to d based commands, but goes into insert mode in the end by prefixing the commands with numbers, the command is performed multiple times.