Fixed bugs. Working real swell now.
This commit is contained in:
parent
6d33305992
commit
8994fe4e8e
3 changed files with 5 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue