We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bashなどのように、(動作時の動的な)コマンドヒストリの安全なマージができるならうれしいかもしれない。
(すくなくとも、操作感を揃えられるので。そして他のインスタンスの履歴を出してcopy&pasteはしなくてよくなる)
bashの場合の設定例 通常は複数のシェルセッションがあってもコマンドヒストリは統合されない 以下のような設定をするとマージするようになる
# https://linuxfan.info/history_share export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND" shopt -u histappend
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bashなどのように、(動作時の動的な)コマンドヒストリの安全なマージができるならうれしいかもしれない。
(すくなくとも、操作感を揃えられるので。そして他のインスタンスの履歴を出してcopy&pasteはしなくてよくなる)
bashの場合の設定例
通常は複数のシェルセッションがあってもコマンドヒストリは統合されない
以下のような設定をするとマージするようになる
The text was updated successfully, but these errors were encountered: