diff --git a/ha-config.org b/ha-config.org index 8dd6447..9addb5a 100644 --- a/ha-config.org +++ b/ha-config.org @@ -856,6 +856,9 @@ Can not live without [[https://magit.vc/][Magit]], a Git porcelain for Emacs. I #+BEGIN_SRC emacs-lisp (use-package magit :config + ;; The following code re-instates my General Leader key in Magit. + (general-unbind magit-mode-map "SPC") + (ha-leader "g" '(:ignore t :which-key "git") "g /" '("Magit dispatch" . magit-dispatch) diff --git a/ha-org-sprint.org b/ha-org-sprint.org index 357f755..41d5df1 100644 --- a/ha-org-sprint.org +++ b/ha-org-sprint.org @@ -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." (interactive) (let ((num (sprint-week-num date))) - (if (oddp num) + (if (cl-oddp num) (- num 2) (- num 1)))) #+END_SRC diff --git a/ha-org.org b/ha-org.org index 2887b4c..db96290 100644 --- a/ha-org.org +++ b/ha-org.org @@ -291,7 +291,7 @@ To make the snippets more context aware, this predicate #+END_SRC ** Keybindings Ugh -#+BEGIN_SRC emacs-lisp +#+BEGIN_SRC emacs-lisp :tangle no (ha-leader :keymaps 'org-mode-map "m l" 'org-insert-link) #+END_SRC