diff options
author | erw7 <erw7.github@gmail.com> | 2018-10-24 19:57:53 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-12-27 22:39:54 +0100 |
commit | 6c62f7b715e7cc51b534d15a981009c2d6d22a66 (patch) | |
tree | acc22327fa8c19619a726344e04c1813c3efdfb5 /scripts/update_terminfo.sh | |
parent | 606030155805732a0aec9da632936e87095d3974 (diff) | |
download | rneovim-6c62f7b715e7cc51b534d15a981009c2d6d22a66.tar.gz rneovim-6c62f7b715e7cc51b534d15a981009c2d6d22a66.tar.bz2 rneovim-6c62f7b715e7cc51b534d15a981009c2d6d22a66.zip |
win/TUI: builtin terminfos for cygwin, conemu, et al.
Diffstat (limited to 'scripts/update_terminfo.sh')
-rwxr-xr-x | scripts/update_terminfo.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/update_terminfo.sh b/scripts/update_terminfo.sh index c78799a56e..87a2adaed5 100755 --- a/scripts/update_terminfo.sh +++ b/scripts/update_terminfo.sh @@ -27,6 +27,9 @@ readonly -A entries=( [vte-256color]=vte_256colour_terminfo [xterm-256color]=xterm_256colour_terminfo [cygwin]=cygwin_terminfo + [win32con]=win32con_terminfo + [conemu]=conemu_terminfo + [vtpcon]=vtpcon_terminfo ) db="$(mktemp -du)" @@ -48,7 +51,7 @@ gunzip -f terminfo.src.gz # Build terminfo database # print_bold '[*] Build terminfo database\n' -tic -x -o "$db" terminfo.src +cat terminfo.src scripts/windows.ti | tic -x -o "$db" - rm -f terminfo.src # |