Couple of bug fixes
This commit is contained in:
parent
5c11765f82
commit
c6a39fb622
2 changed files with 10 additions and 0 deletions
|
@ -108,6 +108,12 @@ The [[https://scripter.co/using-git-delta-with-magit][magit-delta]] project uses
|
||||||
:ensure t
|
:ensure t
|
||||||
:hook (magit-mode . magit-delta-mode))
|
:hook (magit-mode . magit-delta-mode))
|
||||||
#+end_src
|
#+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:
|
I also need to append the following to my [[file:~/.gitconfig][~/.gitconfig]] file:
|
||||||
#+begin_src conf
|
#+begin_src conf
|
||||||
[delta]
|
[delta]
|
||||||
|
|
|
@ -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-ignore-case t)
|
||||||
(completion-category-defaults nil)
|
(completion-category-defaults nil)
|
||||||
(completion-category-overrides '((file (styles partial-completion))))
|
(completion-category-overrides '((file (styles partial-completion))))
|
||||||
|
|
||||||
:init
|
:init
|
||||||
|
(defvar orderless-skip-highlighting nil
|
||||||
|
"Not sure why this is being accessed.")
|
||||||
|
|
||||||
(push 'orderless completion-styles))
|
(push 'orderless completion-styles))
|
||||||
#+end_src
|
#+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.
|
*Note:* Open more than one file at once with =find-file= with a wildcard. We may also give the =initials= completion style a try.
|
||||||
|
|
Loading…
Reference in a new issue