Yochem van Rosmalen

Results 123 comments of Yochem van Rosmalen

Here's a Lua implementation, adapted from https://github.com/tummetott/unimpaired.nvim and using unimpaired's keymaps. ```lua vim.keymap.set('[', function() local repeated = vim.fn["repeat"]({""}, vim.v.count1) local line = vim.api.nvim_win_get_cursor(0)[1] vim.api.nvim_buf_set_lines(0, line-1, line-1, true, repeated) end, {...

I think you have added Siri support, which also appears in the Shortcuts app. The shortcut is called "What's my glucose level". So I guess my question could also be...

Sure! I understand that. I'm afraid I can't help either, I know close to nothing about Swift / iOS development. Thank you again for all the work on this app,...

Related: https://github.com/neovim/neovim/pull/34277 converts `:helptags` to Lua and uses treesitter. This could be a start for converting the whole help system to Lua. Changing help files to a different format (like...

Yeah I thought it would be a blocker. Was hoping that I missed something that would allow the virtual text to wrap nicely.

You're right, I should've thought better about what problem this would fix and what the advantages of the current method are (never thought `gf` would work with env vars!). Thank...

Yes, you're right. I forgot that setting strings option to an empty string usually reverts it to the default value. I'll look into your proposed approach.

The easiest way to set the default statusline would be to modify the `p_stl` or `wp->w_p_stl` when `NUL`: ```c } else if (*p_stl != NUL || *wp->w_p_stl != NUL) {...

Closing in favor of https://github.com/neovim/neovim/pull/30721.

Just an idea: > Add color to section headers (white/green for "all clear" or info only, orange if the section contains a warning, red if the section contains an error)...