Christian Kugler

Results 121 comments of Christian Kugler
trafficstars

Thank you, @abeldekat! For testing purposes I used `{ dir = "path/to/local/which-key.nvim", opts = …}`, reverted the commit https://github.com/folke/which-key.nvim/commit/8503c0d725420b37ac31e44753657cde91435597 you mentioned and it shows `+hunks`. Obviously not a real solution,...

I also have no undercurls in alacritty but not for the lack of support in alacritty as far as I can tell. I am just not sure if this is...

Hm, interesting. Maybe I am doing something wrong in my testing methodology? ``` alacritty --config-file /dev/null echo $TERM #alacritty nvim --clean # type "asdf" :se spell :hi SpellBad cterm=undercurl :q!...

Hm, I have no idea what could be differerent. I wrote `export` to two files to compare them and only show differences. ``` ❯ comm -3

I tried a few other terminal emulators: - Tilix: `TERM=xterm-256color` undercurl works - WezTerm: `TERM=xterm-256color` undercurl is a line - Terminator: `TERM=xterm-256color` undercurl works

Hi @zeertzjq and @glepnir, thank you for checking as well. I think I solved it by understanding [this comment](https://github.com/neovim/neovim/issues/21182#issuecomment-1407429323). I ran `infocmp -x` and noticed the first line: ``` ❯...

Thanks for both clarifications! Reference for installing terminfo file for alacritty: https://github.com/alacritty/alacritty/blob/master/INSTALL.md#terminfo

Hi, @CRAG666, I think there is a problem with projects that contain `-` (potentially other special characters as well). I think this might be this offending line: https://github.com/CRAG666/code_runner.nvim/blob/0c701cae3265c79b4fdfd4b35a4f3d7c5986d46c/lua/code_runner/commands.lua#L44 Tested in...

Looking at https://github.com/CRAG666/code_runner.nvim/commit/701807c4f181cd00d4fad0280bbc821324cbe3c1#diff-247ceb4910166218fe8b1e16bd14726ababae11faaa9f247bb4be8122822fd46L45, it looks like the pattern matching is the reason that `-` break the match. This would work: ```lua print(string.find("path-WithMinus", "path-With", 1, true)) -- 1 9 ``` It...