Closed1
mac+tmuxで「terminals database is inaccessible」と言われた時の解決法
.tmux.cnofを色々いじっていたらclearコマンドが実行できなくなってしまった。
$ clear
terminals database is inaccessible
調べてると.tmux.confの下記の設定が悪さをしていそうだった。
set -g default-terminal "tmux-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
下記で解決
export TERM=xterm-256color
このスクラップは2023/04/23にクローズされました