This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt | |
| index 1eea20f..016b8f6 100644 | |
| --- a/runtime/doc/term.txt | |
| +++ b/runtime/doc/term.txt | |
| @@ -306,6 +306,10 @@ Added by Vim (there are no standard codes for these): | |
| |xterm-true-color| | |
| t_8b set background color (R, G, B) *t_8b* *'t_8b'* | |
| |xterm-true-color| | |
| + t_fe enable focus-event tracking *t_fe* *'t_fe'* | |
| + |xterm-focus-event| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit e7356ec11f4e7f8eb5d74ef491a9106ae8646034 | |
| Author: Hayaki Saito <saitoha@me.com> | |
| Date: Fri May 6 02:46:15 2016 +0900 | |
| Add SIXEL file plugin | |
| diff --git a/plug-ins/common/.gitignore b/plug-ins/common/.gitignore | |
| index 61c986d..339e12c 100644 | |
| --- a/plug-ins/common/.gitignore | |
| +++ b/plug-ins/common/.gitignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/runtime/tools/unicode.vim b/runtime/tools/unicode.vim | |
| index d733fe8..dfe9cef 100644 | |
| --- a/runtime/tools/unicode.vim | |
| +++ b/runtime/tools/unicode.vim | |
| @@ -251,6 +251,27 @@ func! BuildWidthTable(pattern, tableName) | |
| wincmd p | |
| endfunc | |
| +" Build the amoji width table in a new buffer. | |
| +func! BuildEmojiTable(pattern, tableName) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ur ansi.c ansi.c | |
| --- ansi.c 2015-04-08 14:34:29.000000000 +0900 | |
| +++ ansi.c 2016-01-19 23:23:20.000000000 +0900 | |
| @@ -1554,12 +1554,10 @@ | |
| } | |
| #endif | |
| #ifdef RXVT_OSC | |
| - if (typ == 0 || typ == 1 || typ == 2 || typ == 20 || typ == 39 || typ == 49) | |
| + if (typ == 0 || typ == 1 || typ == 2 || typ == 11 || typ == 20 || typ == 39 || typ == 49) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install | |
| $ brew install https://gist.githubusercontent.com/saitoha/3377f59b0bf87882f319/raw/mlterm-cocoa.rb | |
| # settings | |
| $ mkdir $HOME/.mlterm | |
| $ curl https://gist.githubusercontent.com/saitoha/3377f59b0bf87882f319/raw/color > $HOME/.mlterm/color | |
| $ curl https://gist.githubusercontent.com/saitoha/3377f59b0bf87882f319/raw/font > $HOME/.mlterm/font | |
| $ curl https://gist.githubusercontent.com/saitoha/3377f59b0bf87882f319/raw/main > $HOME/.mlterm/main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/x/yaftx.c b/x/yaftx.c | |
| index 891450d..6c63562 100644 | |
| --- a/x/yaftx.c | |
| +++ b/x/yaftx.c | |
| @@ -104,7 +104,8 @@ void xresize(struct xwindow *xw, struct terminal *term, XEvent *ev) | |
| ws.ws_col = term->cols; | |
| ws.ws_row = term->lines; | |
| - ws.ws_xpixel = ws.ws_ypixel = 0; | |
| + ws.ws_ypixel = CELL_HEIGHT * term->lines; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/input.c b/input.c | |
| index d1ff17f..33fad13 100644 | |
| --- a/input.c | |
| +++ b/input.c | |
| @@ -1805,6 +1805,7 @@ input_dcs_dispatch(struct input_ctx *ictx) | |
| { | |
| const char prefix[] = "tmux;"; | |
| const u_int prefix_len = (sizeof prefix) - 1; | |
| + u_char *p; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r 758fe8fd4bae src/main.c | |
| --- a/src/main.c Sun Jul 19 14:42:23 2015 +0200 | |
| +++ b/src/main.c Mon Jul 20 19:52:53 2015 +0900 | |
| @@ -841,7 +841,6 @@ | |
| # if defined(FEAT_MBYTE) | |
| may_req_ambiguous_char_width(); | |
| # endif | |
| - may_req_bg_color(); | |
| #endif | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "formula" | |
| class Hiptext < Formula | |
| homepage "https://github.com/jart/hiptext" | |
| head "https://github.com/jart/hiptext.git", :branch => "master" | |
| depends_on "pkg-config" => :build | |
| depends_on "ragel" => :build | |
| depends_on :libpng | |
| depends_on "jpeg" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r bb75c6c7c8be mlterm/ml_vt100_parser.c | |
| --- a/mlterm/ml_vt100_parser.c Sat Apr 18 07:12:56 2015 +0900 | |
| +++ b/mlterm/ml_vt100_parser.c Tue Apr 28 00:29:45 2015 +0900 | |
| @@ -3370,6 +3370,7 @@ | |
| vt100_parser->is_app_cursor_keys = 0 ; | |
| vt100_parser->is_app_escape = 0 ; | |
| vt100_parser->is_bracketed_paste_mode = 0 ; | |
| + vt100_parser->is_allow_deccolm = 0 ; | |
| vt100_parser->im_is_active = 0 ; |