Alt+number+dot and Alt+comma in Zsh and Bash

久未见 提交于 2019-12-01 05:18:08

Looking for this feature I came across this blogpost by Christian Neukirchen:

1. You probably know M-. to insert the last argument of the previous line. Sometimes, you want to insert a different argument. There are a few options: Use history expansion, e.g. !:-2 for the third word on the line before (use TAB to expand it if you are not sure), or use M-. with a prefix argument: M-2 M-.

Much nicer however is:

autoload -Uz copy-earlier-word
zle -N copy-earlier-word
bindkey "^[m" copy-earlier-word

Then, M-m will copy the last word of the current line, then the second last word, etc. But with M-. you can go back in lines too! Thus:

% echo a b c
% echo 1 2 3
% echo <M-.><M-.><M-m>
% echo b

Man, I wish I knew that earlier!

In this text, M is referring to the Meta key, aka Alt. So in theory this should work out of the box, as Christian says. So I went to try this and yes, it did work out of the box.

The zle widgets in charge of this behavior are insert-last-word ─which is ALT+.─ and digit-argument ─which is ALT+Number.

Here's the relevant bindkey output:

$ bindkey -L | grep '\^\[[.0-9]'
bindkey "^[." insert-last-word
bindkey "^[0" digit-argument
bindkey "^[1" digit-argument
bindkey "^[2" digit-argument
bindkey "^[3" digit-argument
bindkey "^[4" digit-argument
bindkey "^[5" digit-argument
bindkey "^[6" digit-argument
bindkey "^[7" digit-argument
bindkey "^[8" digit-argument
bindkey "^[9" digit-argument

so check that those appear and try again. You can update your original question with the output of the shown bindkey command to help narrow down the issue, or open one directly in oh-my-zsh with the details.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!