Kaushal Modi
Kaushal Modi
@nitely I apologize for my PR causing all this trouble.
@dandavison The suggestion in https://github.com/dandavison/magit-delta/issues/13#issuecomment-754803416 does not work for me. I started using `delta` a few days back and I love it! The I learned that you also developed `magit-delta`,...
Quick update! It looks like this config works and makes both terminal-side and magit-side delta invocation happy. ```gitconfig # In .gitconfig [delta] # https://github.com/dandavison/magit-delta/issues/13 # line-numbers = true # Don't...
Came here looking for this. My VCS is centralized. So all files are symlinks to cached files in server. I always need to add `--follow` option to the rg/ag/etc commands....
May be `"%s --color=ansi --line-number --no-heading --follow --with-filename %s %s %s %s -- %s ."` in `deadgrep--format-command` be made a defcustom?
I ended up with this for now: ```el (defconst modi/deadgrep--rg-args `("--color=ansi" "--line-number" "--no-heading" "--with-filename" "--no-ignore-vcs" ;Ignore files/dirs ONLY from `.ignore' "--follow" ;Follow symlinks "%s" ;--fixed-strings and/or --word-regexp "%s" ;--smart-case /...
An even better way (for now): ```el (defconst modi/deadgrep--rg-extra-args `("--no-ignore-vcs" ;Ignore files/dirs ONLY from `.ignore' "--follow" ;Follow symlinks "--ignore-file" ,(expand-file-name ".ignore" (getenv "HOME"))) "Extra rg arguments to be added to...
+1 to what @xenodium said: > That is, useC-x C-q to enterdeadgrep-edit-mode, make your edits, and use C-c C-c to apply the changes to all files. This seems to be...
This seems to fix at least the fontification when `signed` is in the type declaration: ```diff diff --git a/verilog-mode.el b/verilog-mode.el index 1102014..e791c81 100644 --- a/verilog-mode.el +++ b/verilog-mode.el @@ -3372,7 +3372,7...
Hello, can someone please look into this? I want an Emacs package dependency for building a site on Netlify, but it needs at least Emacs 27. Its compilation fails on...