aboutsummaryrefslogtreecommitdiffstats
path: root/community/neovim/ignore-st-cursor-shape.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-06-16 14:47:02 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-06-16 14:41:09 +0200
commitfd0ca4fa23bbe994f60489c5ec8d65f030970a2f (patch)
tree488c388636621e263636895bf2624ae048c66311 /community/neovim/ignore-st-cursor-shape.patch
parent3eb67baa706762c0bb7945e07338d79792090831 (diff)
downloadaports-fd0ca4fa23bbe994f60489c5ec8d65f030970a2f.tar.bz2
aports-fd0ca4fa23bbe994f60489c5ec8d65f030970a2f.tar.xz
community/neovim: upgrade to 0.3.0
Diffstat (limited to 'community/neovim/ignore-st-cursor-shape.patch')
-rw-r--r--community/neovim/ignore-st-cursor-shape.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/community/neovim/ignore-st-cursor-shape.patch b/community/neovim/ignore-st-cursor-shape.patch
deleted file mode 100644
index eedff075c4..0000000000
--- a/community/neovim/ignore-st-cursor-shape.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ruN a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c
---- a/src/nvim/tui/tui.c 2018-02-09 18:00:57.112018546 +0100
-+++ b/src/nvim/tui/tui.c 2018-02-09 18:03:44.232783880 +0100
-@@ -1444,7 +1444,7 @@
- // Some terminals can not currently be trusted to report if they support
- // DECSCUSR or not. So we need to have a blacklist for when we should not
- // trust the reported features.
-- if (!((vte_version != 0 && vte_version < 3900) || konsole)) {
-+ if (!(st || (vte_version != 0 && vte_version < 3900) || konsole)) {
- // Dickey ncurses terminfo has included the Ss and Se capabilities,
- // pioneered by tmux, since 2011-07-14. So adding them to terminal types,
- // that do actually have such control sequences but lack the correct
-@@ -1464,6 +1464,7 @@
- || tmux // per tmux manual page
- // https://lists.gnu.org/archive/html/screen-devel/2013-03/msg00000.html
- || screen
-+ || st // #7641
- || rxvt // per command.C
- // per analysis of VT100Terminal.m
- || iterm || iterm_pretending_xterm