Sergio A. Vargas

Results 69 comments of Sergio A. Vargas

> * branch changed: Paq will **silently** reinstall the plugin without the user knowing (see function `reclone`) > * remote changed: same as branch That's is fine for now. I...

I'm not opposed to the idea of adding more variants, but it might take a while before I get around to it. I originally designed Melange without accessibility in mind....

I'll set aside some time later in the year to port the colorscheme, since I'll be using vscode more often (to learn/use cursorless lol).

I didn't find the time to work on this, but recently @rtud made a vscode port with some small tweaks here: [rtud/melange-redux](https://github.com/rtud/melange-redux/).

Yes, this could be improved! The saturation could be increated to have more contrast. It'd also be a good idea to use a different hue for `DiffText`. In dark mode...

`send_request` works, thanks! The `nvim_exec_lua` doesn't work tho. The type of args should be `Vector{Any}`, but after fixing that it still fails, everything else seems fine, I'm not sure about...

Checked again, and I think the problem was with the `vcat`. The args should stay in a separate array. Here's the function that's working for me: ```julia function nvim_exec_lua(nvim::NvimClient, code::String,...

Yeah, I always forget to update my settings so I thought it'd be nice if it were the default. 😅

To calculate color contrast accurately we should use the [APCA/WCAG3 lightness contrast function](https://www.myndex.com/APCA/). The current Web Content Accessibility Guidelines v2 (WCAG2) _contrast ratio_ has several problems. The most notable one...

The repl prompt isn't parsed because it's not part of the language at all. > e.g. in julia-repl codeblocks in docstrings What editor/platform are you using that uses tree-sitter for...