Yochem van Rosmalen
Yochem van Rosmalen
asan seems to be fixed, but I can't reproduce the Windows error as I don't have a Windows machine on hand. It looks like `vim.uv.fs_mkdir(testdir .. '/xdg_data', 444)` doesn't create...
I still can't get the Windows test to work. I tried the following: ``` eq( vim.fs.normalize(fn.stdpath('data') .. '/spell/en.utf-8.add'), vim.fs.normalize(api.nvim_get_option_value('spellfile', {})) ) ``` But that still gives the following error in...
> Note also that nvim-data/ is the special stdpath('data') path on Windows. That difference also seems quite weird. C code for getting the data path uses `get_xdg_home(kXDGDataHome);`. Lua code uses...
The Windows tests pass now. There are two (new) failing checks on macos and ubuntu, but I don't think they have anything to do with the changes introduced in this...
+1 for a `vim.diagnostic.config.status` field. The use of vim.diagnostic.config is well-documented and works incredibly well with accounting for both status-specific diagnostics config and global diagnostics config. It can have a...
> A downside I see with this approach is that without any diagnostics set this would draw E:0 W:0 I:0 H:0 Was thinking this too. I feel that changing the...
See this command by Justin: https://github.com/neovim/neovim/pull/27195#pullrequestreview-1847670314 and the relevant docs in `:help dev-naming`: > get: Gets things. Two variants (overloads): 1. `get(id: int): T` returns one item. 2. `get(filter: dict):...
Sorry for not providing a more complete description earlier. Here's a full example: ```md A test[^1] [^1]: https://example.com They're here: ``` Renders: Version: presenterm 0.15.1
Awesome, thanks!
Should the `cmd` field only be set if a `cmd` is supplied on the command line, or also to the path of the shell when no cmd is supplied? I.e.:...