diff options
author | dundargoc <gocdundar@gmail.com> | 2024-08-14 15:52:51 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-09-05 14:28:12 +0200 |
commit | f9108378b7a7e08b48685f0a3ff4f7a3a14b56d6 (patch) | |
tree | c347ffd91ee7e05a981f313aa4c15d8a2354fbf7 /src/nvim/os | |
parent | 975aeee537375a14c0e16916e1ef312aae90b85f (diff) | |
download | rneovim-f9108378b7a7e08b48685f0a3ff4f7a3a14b56d6.tar.gz rneovim-f9108378b7a7e08b48685f0a3ff4f7a3a14b56d6.tar.bz2 rneovim-f9108378b7a7e08b48685f0a3ff4f7a3a14b56d6.zip |
refactor: adopt termkey and eliminate duplicate code
Termkey is abandoned and it's now our code, so there's no reason not to
treat it as such. An alternative approach could be to have a proper repo
that we maintain such as with unibilium, although with this approach we
can make a few assumptions that will allow us to remove more code.
Also eliminate duplicate code from both termkey and libvterm.
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/win_defs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/os/win_defs.h b/src/nvim/os/win_defs.h index 024719806c..852059f78b 100644 --- a/src/nvim/os/win_defs.h +++ b/src/nvim/os/win_defs.h @@ -16,9 +16,6 @@ #include <sys/stat.h> #include <windows.h> -// vterm.h defines an `unsigned int small` in a struct, triggering error C2632 -#undef small - // Windows does not have S_IFLNK but libuv defines it // and sets the flag for us when calling uv_fs_stat. #include <uv.h> |