Results 69 comments of L

> Note: as of now, neovim master has some performance regression problem (https://github.com/neovim/neovim/pull/25143) which is yet to be fixed, so we should check again after this is fixed in neovim...

Note, there is still a case which is not covered by https://github.com/tree-sitter/tree-sitter-python/pull/242 Iterating on possible solutions here: https://github.com/tree-sitter/tree-sitter-python/pull/243 https://github.com/tree-sitter/tree-sitter-python/pull/244 but it's a tricky problem

`minimal-init.lua` can be shorter with new versions of Neovim: ```lua vim.api.nvim_create_autocmd("FileType", { pattern = { "*" }, callback = function() if pcall(vim.treesitter.start) then vim.wo.foldmethod = "expr" vim.wo.foldexpr = "v:lua.vim.treesitter.foldexpr()" end...

> Hmm, seeing as nvim-telescope/telescope.nvim#2726 was about fixing an issue related to this, is this fixed by now? This workaround works, although not a fix for the deeper issue in...

> Why so complicated? Something as simple as this should work for the majority of the public API: Unfortunately these wildcards are too aggressive, * they will change `dist/compiled/arg/index.js` to...

EDIT: sorry, just realized this is similar to [this comment](https://github.com/vercel/next.js/issues/54777#issuecomment-1808505837) In `nodenext` we have: ``` ts: 'Link' cannot be used as a JSX component. ``` The workaround is: ```typescript import...

I experienced this as well, maybe related to https://github.com/folke/which-key.nvim/issues/469 My use-case is I want to disable vim-illuminate in visual mode, and they have an option for that, but this is...

Zed 0.129.2 still has the issue. I reproduced it with a free font in case that's easier: ```json { "theme": "Catppuccin Macchiato", "telemetry": { "diagnostics": false, "metrics": false }, "buffer_font_size":...

Here's a rather janky way to get VSCode diagnostics on load/save: https://github.com/llllvvuu/efm-tool-definitions.yaml/blob/cb90f12516a27a8e1820600afe94229c04bb5c19/tool-definitions.yaml#L42-L55 The above becomes lint-as-you-type if https://github.com/Instagram/Fixit/pull/388 is merged. That leaves the remaining task of supporting Code Actions, which...