Ruslan Hrabovyi

Results 141 comments of Ruslan Hrabovyi

> Kickstart.nvim targets only the latest ['stable'](https://github.com/neovim/neovim/releases/tag/stable) and latest ['nightly'](https://github.com/neovim/neovim/releases/tag/nightly) of Neovim. Do we really need backward compatibility with Neovim 0 10? I'd consider going with a lighter, happy-path solution....

Last time I encountered a similar issue, I ended up using [diagflow.nvim](https://github.com/dgagn/diagflow.nvim). If there's a built-in Neovim solution to improve the hints, it would be great to include it in...

> So why would a change in upstream kickstart.nvim affect users config? There are reasonable changes over time that I want to stay in sync with, so I regularly pull...

> Mason says it fails to install something, I don't know where to get more information (...) looks like you should find the answer on the Mason side. It does...

I just came across another example where the oil:// protocol might introduce unnecessary integration complexity. In [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim/blob/3946f0122255bc377d14a59b27b609fb3ab25768/lua/lualine/components/branch/git_branch.lua#L80-L86), there’s a specific check to handle the oil:// prefix for Git branch detection....

@NahueBerg I think you can label tests that you want to skip with a tag-like substring, like: ``` test('[skip certain test] ...', function(... ``` and then use an inversed filter,...

IMO it's consistent vim-wise. In telescope you could also have `j` and `k` working when entering normal mode(`Esc`). In oil you are in the normal mode by default, so you...

I just found out the following snippet : ```lua formatters_by_ft = { python = function(bufnr) if require("conform").get_formatter_info("ruff_format", bufnr).available then return { "ruff_format" } else return { "isort", "black" } end...

@feoh That's a great question. My main concern with this PR is the inclusion of random code snippets, which, on their own, aren't sufficient for a curious user to find...

@NullVoxPopuli closed by mistake?