Eu não sei como completar automaticamente. Então, o plano alternativo é melhorar o movimento do cursor.
No modo de cópia / rolagem, você pode usar algumas teclas de movimento. (de screen(1)
)
Movement keys:
h, C-h, or left arrow move the cursor left.
j, C-n, or down arrow move the cursor down.
k, C-p, or up arrow move the cursor up.
l ('el') or right arrow move the cursor right.
0 (zero) or C-a move to the leftmost column.
+ and - positions one line up and down.
H, M and L move the cursor to the leftmost column of the top, center or bottom line of the window.
| moves to the specified absolute column.
g or home moves to the beginning of the buffer.
G or end moves to the specified absolute line (default: end of buffer).
% jumps to the specified percentage of the buffer.
^ or $ move to the leftmost column, to the first or last non-whitespace character on the line.
w, b, and e move the cursor word by word.
B, E move the cursor WORD by WORD (as in vi).
f/F, t/T move the cursor forward/backward to the next occurence of the target. (eg, '3fy' will move the cursor to the 3rd 'y' to the right.)
; and , Repeat the last f/F/t/T command in the same/opposite direction.
C-e and C-y scroll the display up/down by one line while preserving the cursor position.
C-u and C-d scroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).
C-b and C-f scroll the display up/down a full screen.
Searching:
? Vi-like search backward.
C-a s Emacs style incremental search forward.
C-r Emacs style reverse i-search.
n Find next search pattern.
N Find previous search pattern.
No seu caso,
-
Ctrl+[
- no modo de cópia / rolagem. -
?ldn
- busca para trás uma palavraldn
da posição atual do cursor. -
n
- move o cursor para os próximos candidatos. -
space
(quando a posição do cursor se move para os seus desejos) defina a primeira marca. -
e
- move o cursor para o final de uma palavra. -
space
- define a segunda marca e finaliza o modo de cópia / rolagem.
As setas não aparecem em nenhum lugar. :)