Couple of bug fixes

This commit is contained in:
Howard Abrams 2024-02-26 13:25:33 -08:00
parent 5c11765f82
commit c6a39fb622
2 changed files with 10 additions and 0 deletions

View file

@ -108,6 +108,12 @@ The [[https://scripter.co/using-git-delta-with-magit][magit-delta]] project uses
:ensure t
:hook (magit-mode . magit-delta-mode))
#+end_src
This requires [[https://dandavison.github.io/delta/installation.html][installing an executable]]. For instance, on my Mac:
#+begin_src sh
brew install git-delta
#+end_src
I also need to append the following to my [[file:~/.gitconfig][~/.gitconfig]] file:
#+begin_src conf
[delta]

View file

@ -224,7 +224,11 @@ While the space can be use to separate words (acting a bit like a =.*= regular e
(completion-ignore-case t)
(completion-category-defaults nil)
(completion-category-overrides '((file (styles partial-completion))))
:init
(defvar orderless-skip-highlighting nil
"Not sure why this is being accessed.")
(push 'orderless completion-styles))
#+end_src
*Note:* Open more than one file at once with =find-file= with a wildcard. We may also give the =initials= completion style a try.