Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

In Bash, we can use Alt+number+. to select the nth argument of previous commands, and Alt+, to select the previous commands. They cycles through the history.

For example:

$ ls 1 2
$ echo 10 20

Now press and hold Alt, and press 0 then dot, it will show "echo". Without releasing Alt, press . again, it will show "ls". Use 1 in the same operation will show 10 and 1, etc. Pressing Alt and comma shows the whole command line in the history. Also Alt and . show the last argument of the commands in history.

Note that all of these operations just insert the argument (or whole command line) to the current cursor. They don't change what's already there in the current command line.

I am using Zsh and the latest Oh-My-Zsh package but it seems the behavior is different:

  • Zsh has the Alt+, to show the last argument of commands.

  • The Alt+0+. is the same as Bash (shows the comman), but Alt+number+. shows the last nth argument, i.e., Alt+1+. in above case shows 20 and 2.

  • The Alt+, doesn't display the whole commands in history.

How to do the same thing in Zsh? Thanks.

like image 529
user2847598 Avatar asked Jan 02 '16 22:01

user2847598


People also ask

What is Alt bash?

So What Is An "Alt Bash?" Alt Bashes are parties thrown to celebrate the not-so-celebrated moments. Alt Bashes are heavily trending this year! It's all about celebrating things that are a triumph to you, but might not seem so by society.

Which history shortcut can you use to reference the previous command's arguments?

Alt + # + . : insert #nth last argument from last command.


1 Answers

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.

like image 160
Marc Cornellà Avatar answered Sep 24 '22 01:09

Marc Cornellà