I'm trying to configure my Terminal and I would like to insert @{} at one key-stroke. This works with the following code

# .inputrc
"\e\"": "@{}"

But I also want the cursor to end up inside the braces. How can I do this? The following doesn't work.

# .inputrc
"\e\"": "@{}": backward-char
link|improve this question

70% accept rate
feedback

3 Answers

up vote 4 down vote accepted

Try:

"\e\"": "@{}\e[D"
link|improve this answer
Beautiful, thank you. Where did you find the char code for the left arrow? – andersjanmyr Jan 19 '09 at 18:21
1  
If you type CTRl-V in the terminal it will display the escape code for the next key you type. – Antibaddy Jan 19 '09 at 20:14
feedback

I can't say I have an answer, but I am curious why you're trying to do this.

link|improve this answer
One thing I could think of are Git revisions from the reflog: They are referenced with “HEAD@{1}” and such. – Bombe Jan 19 '09 at 9:48
This is exactly why I wanted it. On a Swedish keyboard the character @ and {} are on the alt key making them a bit painful to type. I can think of others to as soon as I get it working the way I want, such as $(). – andersjanmyr Jan 19 '09 at 9:56
feedback

My immediate way to fix your overall goal (not really answering your question, but hopefully helping you anyway): write a bash alias or function for it. grev() perhaps, or something similar - at least, this is what I would do were I in your situation.

I am interested to see if what you originally asked is possible, however, so voting up your question in hopes that you can get a 'real answer'!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.