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

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...