aboutsummaryrefslogtreecommitdiff
path: root/scripts/update_terminfo.sh
Commit message (Collapse)AuthorAge
* build(terminfo): include user capabilities in comments (#28066)zeertzjq2024-03-28
| | | Add -x flag to infocmp, so that comments match the content.
* refactor: replace manual header guards with #pragma oncedundargoc2023-11-12
| | | | | It is less error-prone than manually defining header guards. Pretty much all compilers support it even if it's not part of the C standard.
* build: remove PVSdundargoc2023-11-12
| | | | | | | We already have an extensive suite of static analysis tools we use, which causes a fair bit of redundancy as we get duplicate warnings. PVS is also prone to give false warnings which creates a lot of work to identify and disable.
* build(lint): add more shell scripts to lintshdundargoc2022-11-01
|
* feat(terminfo): bump built-in terminfo entries (#18570)Marco Hinz2022-05-16
| | | | | | Removes NOLINT, which is pointless for the generated terminfo_defs.h. Adds `uncrustify:off`, so it is not uncrustify which complains about the same things (too long lines, no space after comma) instead.
* update_terminfo.sh: NOLINT data arraysJustin M. Keyes2018-12-28
|
* update_terminfo.sh: Use printf instead of echoJustin M. Keyes2018-12-28
|
* win/TUI: builtin terminfos for cygwin, conemu, et al.erw72018-12-27
|
* win/TUI: SetConsoleMode() to override libuv #9094erw72018-12-27
| | | | | | | | | | | | Use uv_set_vterm_state() to override libuv's guess. See https://github.com/libuv/libuv/pull/1873/ for discussion. This commit uses a terminal-detection approach based on GetProcessImageFileNameW(...), which will be reverted in the following commit. The approach was intended to handle the case of running in winpty (:terminal), but we will add $NVIM env var for that. Also add some support for ConEmu, cygwin.
* terminfo: add header guard, stdint.h for int8_t (#8848)Jan Edmund Lazo2018-08-11
| | | | Lint fixes for single-include test.
* terminfo: add scripts/update_terminfo.shMarco Hinz2018-08-10
This script updates the built-in terminfo entries. [skip ci]