Fixed bugs. Working real swell now.

This commit is contained in:
Howard Abrams 2021-11-08 12:06:04 -08:00
parent 6d33305992
commit 8994fe4e8e
3 changed files with 5 additions and 2 deletions

View file

@ -856,6 +856,9 @@ Can not live without [[https://magit.vc/][Magit]], a Git porcelain for Emacs. I
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package magit (use-package magit
:config :config
;; The following code re-instates my General Leader key in Magit.
(general-unbind magit-mode-map "SPC")
(ha-leader (ha-leader
"g" '(:ignore t :which-key "git") "g" '(:ignore t :which-key "git")
"g /" '("Magit dispatch" . magit-dispatch) "g /" '("Magit dispatch" . magit-dispatch)

View file

@ -237,7 +237,7 @@ And it appears that my PM for this year, is a week number behind.
each sprint is two weeks long, starting on Thursday." each sprint is two weeks long, starting on Thursday."
(interactive) (interactive)
(let ((num (sprint-week-num date))) (let ((num (sprint-week-num date)))
(if (oddp num) (if (cl-oddp num)
(- num 2) (- num 2)
(- num 1)))) (- num 1))))
#+END_SRC #+END_SRC

View file

@ -291,7 +291,7 @@ To make the snippets more context aware, this predicate
#+END_SRC #+END_SRC
** Keybindings ** Keybindings
Ugh Ugh
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp :tangle no
(ha-leader :keymaps 'org-mode-map (ha-leader :keymaps 'org-mode-map
"m l" 'org-insert-link) "m l" 'org-insert-link)
#+END_SRC #+END_SRC