Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
677 views
in Technique[技术] by (71.8m points)

terminal - Work-around for PyCharm not supporting "ALT ." up to now

I love "ALT ." to re-use the last argument of the previous command on the linux command line.

Unfortunately PyCharm's terminal does not support this feature: IDEA-155783

Since JetBrains ignores this issue since five years, I think it is time to look for a work-around.

Is there a way to get "ALT ." working in PyCharm's Terminal?

Environment: Ubuntu 20.04

question from:https://stackoverflow.com/questions/65951037/work-around-for-pycharm-not-supporting-alt-up-to-now

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's not quite the same, but if you're using the default bash shell, you can use either $_ or !$

In pycharm's terminal window:

$ ls /dev/null
/dev/null
$ echo "stackoverflow" > !$
echo "stackoverflow" > /dev/null

Bash has a ton of built-in history recall features: https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#History-Interaction

I'm sure most other shells do as well.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...