Skip to content

Instantly share code, notes, and snippets.

@silenvx
Created October 15, 2012 21:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save silenvx/3895468 to your computer and use it in GitHub Desktop.
Save silenvx/3895468 to your computer and use it in GitHub Desktop.
tmuxのペインの境目に使われる罫線を書き換えただけのpatch
diff -Narup tmux-1.6.orig/tty-acs.c tmux-1.6/tty-acs.c
--- tmux-1.6.orig/tty-acs.c 2012-10-15 00:13:51.729160450 +0900
+++ tmux-1.6/tty-acs.c 2012-10-15 00:35:51.770801087 +0900
@@ -41,21 +41,21 @@ const struct tty_acs_entry tty_acs_table
{ 'g', "\302\261" },
{ 'h', "\342\226\222" },
{ 'i', "\342\230\203" },
- { 'j', "\342\224\230" },
- { 'k', "\342\224\220" },
- { 'l', "\342\224\214" },
- { 'm', "\342\224\224" },
- { 'n', "\342\224\274" },
+ { 'j', "+" },
+ { 'k', "+" },
+ { 'l', "+" },
+ { 'm', "+" },
+ { 'n', "+" },
{ 'o', "\342\216\272" },
{ 'p', "\342\216\273" },
- { 'q', "\342\224\200" },
+ { 'q', "-" },
{ 'r', "\342\216\274" },
{ 's', "\342\216\275" },
- { 't', "\342\224\234" },
- { 'u', "\342\224\244" },
- { 'v', "\342\224\264" },
- { 'w', "\342\224\254" },
- { 'x', "\342\224\202" },
+ { 't', "+" },
+ { 'u', "+" },
+ { 'v', "+" },
+ { 'w', "+" },
+ { 'x', "|" },
{ 'y', "\342\211\244" },
{ 'z', "\342\211\245" },
{ '{', "\317\200" },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment