Mathias Lindgren

Results 15 comments of Mathias Lindgren

Sure, my scenario was a kind of http request REPL. Basically: first choose from a list of profiles (development, production, etc) then from a list of services (defined by openapi...

PR for removing this from vim https://github.com/vim/vim/pull/13803 So should probably close this if it gets merged.

The general changes can be added to the zig.vim plugin after the fact, if they want them. This is a proposal to split from that plugin where vim maintains its...

Just as an example, the go ft plugin was split into two, one bare bones and one more ide-like. https://github.com/google/vim-ft-go https://github.com/fatih/vim-go The former one was merged into vim and is...

The doc comment! But there is also the matter of the zig_std_dir, which I would like to remove because it also seems intrusive. But I do not even know fully...

Ok, seems good to me, but is the implementation good enough? @habamax pointed out > On windows gvim system() call looks ugly and you probably don't want to see cmd.exe...

> Ah, okay, let's leave it out for now. I am not a big fan of running system commands just by loading a filetype. Just document that g:zig_std_dir can be...

I want to disable underlining but keep the highlight of unnecessary/deprecated. Is the solution that the newly proposed highlight would take a function which could handle that granularity? Otherwise I...

Ok my question then is: Is there a way of disabling underlining highlight whilst keeping unnecessary/deprecated highlights? If not: I would like to petition for implementing support for that. How...

There are some weird stuff going on with qualified stuff in a couple of places, here is an example: ```haskell import Data.Tuple (curry) import qualified Data.Tuple as Tuple c ::...