diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-08 00:28:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-07 15:28:44 -0700 |
| commit | 4547137aaff32b20172870a549d3a28a3c7adf1c (patch) | |
| tree | 0f40a62b3741c57a6f5759dc25f8932a26922908 /src/nvim/tui | |
| parent | e2bc7e321b4a8bec3727cf342a84eb1e85dadbc8 (diff) | |
| download | rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.gz rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.bz2 rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.zip | |
chore: use codespell to spell check #15016
Diffstat (limited to 'src/nvim/tui')
| -rw-r--r-- | src/nvim/tui/tui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 6e885279a9..431237bac5 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1025,7 +1025,7 @@ static void tui_mouse_on(UI *ui) if (!data->mouse_enabled) { #ifdef WIN32 // Windows versions with vtp(ENABLE_VIRTUAL_TERMINAL_PROCESSING) and - // no vti(ENABLE_VIRTUAL_TERMINAL_INPUT) will need to use mouse traking of + // no vti(ENABLE_VIRTUAL_TERMINAL_INPUT) will need to use mouse tracking of // libuv. For this reason, vtp (vterm) state of libuv is temporarily // disabled because the control sequence needs to be processed by libuv // instead of Windows vtp. @@ -1048,7 +1048,7 @@ static void tui_mouse_off(UI *ui) if (data->mouse_enabled) { #ifdef WIN32 // Windows versions with vtp(ENABLE_VIRTUAL_TERMINAL_PROCESSING) and - // no vti(ENABLE_VIRTUAL_TERMINAL_INPUT) will need to use mouse traking of + // no vti(ENABLE_VIRTUAL_TERMINAL_INPUT) will need to use mouse tracking of // libuv. For this reason, vtp (vterm) state of libuv is temporarily // disabled because the control sequence needs to be processed by libuv // instead of Windows vtp. |