diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-03 18:08:46 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-05-03 18:08:54 +0200 |
commit | 0502ac47fb5391889d1eed9d7c378a87e35d7882 (patch) | |
tree | 1f116924aa639cb02e9f0b1a9ec2cd5b7238292c /src | |
parent | 5fd1d09aa5ad5b12220a1b4e86c080a7378e1a68 (diff) | |
download | rneovim-0502ac47fb5391889d1eed9d7c378a87e35d7882.tar.gz rneovim-0502ac47fb5391889d1eed9d7c378a87e35d7882.tar.bz2 rneovim-0502ac47fb5391889d1eed9d7c378a87e35d7882.zip |
'guicursor': tui: Konsole: blinkon0 should disable blinking.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/tui/tui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index e45c620176..d4b34e82f8 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -575,7 +575,7 @@ static void tui_set_mode(UI *ui, ModeShape mode) default: WLOG("Unknown shape value %d", shape); break; } data->params[0].i = shape; - data->params[1].i = (c.blinkon == 0); + data->params[1].i = (c.blinkon != 0); unibi_format(vars, vars + 26, TMUX_WRAP("\x1b]50;CursorShape=%p1%d;BlinkingCursorEnabled=%p2%d\x07"), |