diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-04-14 13:47:18 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-14 14:08:51 +0200 |
| commit | 497208692f177aa2d333219232cbf7bb8c6b84b1 (patch) | |
| tree | 03efbcf0b8554b76a1d75c8f3aa93625f269470f /lua | |
| parent | Revert "ci(tests): drop flaky wing parser tests" (diff) | |
| download | nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar.gz nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar.bz2 nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar.lz nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar.xz nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.tar.zst nvim-treesitter-497208692f177aa2d333219232cbf7bb8c6b84b1.zip | |
fix(compile): add `/utf-8` flag on win+cl
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/shell_command_selectors.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/shell_command_selectors.lua b/lua/nvim-treesitter/shell_command_selectors.lua index c215aa77f..96ad6acc4 100644 --- a/lua/nvim-treesitter/shell_command_selectors.lua +++ b/lua/nvim-treesitter/shell_command_selectors.lua @@ -91,6 +91,7 @@ function M.select_compiler_args(repo, compiler) "/Isrc", repo.files, "-Os", + "/utf-8", "/LD", } elseif string.match(compiler, "zig$") or string.match(compiler, "zig.exe$") then |
