Mika Vilpas
Mika Vilpas
> Currently, there's no saved information about the matching line numbers. Where do you plan to store them? Will it be in the file's own attributes or a separate variable?...
Looks like rg also provides a rudimentary integration with delta: https://github.com/BurntSushi/ripgrep?tab=readme-ov-file#related-tools I tried this out and it worked.. but some files were not highlighted correctly. Also, this requires a bit...
Hmm, conceptually they are very similar, but here are some differences: - fg.yazi seems to use external programs - I actually meant simple highlighting in yazi's current search - fg.yazi...
I was able to do the `exec -> run` transition, but thought to notify you that in my case it resulted in a runtime panic. Maybe the transition is not...
Thanks for the feedback. I'll try to see if I can avoid issues with calling both `will-rename` and `did-rename` as it does seem a bit weird to me too. The...
I created a simple typecheck test case to prove the workaround works. ```ts // cypress/support/commands.ts /// declare global { namespace Cypress { // https://github.com/cypress-io/cypress/issues/18182#issuecomment-1486921299 interface Chainable { wrap( element: E...
I can get this plugin to work in `COMMIT_EDITMSG` files by setting `:set ft=markdown` but that also starts some markdown related LSP servers which I don't really need when working...
Wow this solution is incredible! Huge thanks.  https://github.com/mikavilpas/dotfiles/commit/ed18a16df5df32501788294bfb04a9fc67687e80 In my image you can see the full diff at the bottom - it's there for github copilot to get some...
I didn't know `core.commentChar` exists. This is very nice - now even headings work :) I'm sure the diff highlighting could be made to work with a `prepare-commit-msg` git hook,...
Wow this solution is amazing! For now I think I can work around the limitations of `core.commentChar` by using `===` under headings (the alternate markdown heading syntax. I think this...