9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Homebrew の tmux に文字幅問題を修正するパッチをあてる

Posted at

こんにちは!こんにちは!

tmux 上で日本語の文字列を入力していると、たまに表示が崩れることがあります。特定の記号とかの文字を表示するとダメンな感じなんですね。

そんなこんなでいい加減なんとかしたいなと思って調べてみたら、version 2.3 環境用のパッチがあるんでないかい。てかこれ、本家では問題になってないんだろうか。そこまでは調べてないッス手抜きですんません…。

で homebrew を使ってるんでパッチを当てる方法のメモ。

$ brew update
$ brew edit tmux

で、以下を追加する。

def patches
   [
      "https://gist.githubusercontent.com/waltarix/1399751/raw/6c8f54ec8e55823fb99b644a8a5603847cb60882/tmux-pane-border-ascii.patch",
      "https://gist.githubusercontent.com/z80oolong/e65baf0d590f62fab8f4f7c358cbcc34/raw/382c4794710940605681b490a534a616633eba55/tmux-2.3-fix.diff"
   ]
end

そしてインストール!

$ brew reinstall --build-from-source tmux
9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?