pkg update and first config fix

org-brain not working, add org-roam
This commit is contained in:
2022-12-19 23:02:34 +01:00
parent 02b3e07185
commit 82f05baffe
885 changed files with 356098 additions and 36993 deletions

View File

@@ -3,8 +3,8 @@
;; Author: Yuan Fu <casouri@gmail.com>
;; Maintainer: Yuan Fu <casouri@gmail.com>
;; URL: https://github.com/casouri/iscroll
;; Package-Version: 20210128.1938
;; Package-Commit: d6e11066169d232fe23c2867d44c012722ddfc5a
;; Package-Version: 20220612.310
;; Package-Commit: 76aa4e7e72f907e95715351819d9efb6336b8238
;; Version: 1.0.0
;; Keywords: convenience, image
;; Package-Requires: ((emacs "26.0"))
@@ -215,7 +215,7 @@ function counts from visual line beginning."
(defun iscroll-forward-line (&optional arg)
"Smooth `forward-line'.
ARG is the number of lines to move."
(interactive "p")
(interactive "^p")
(let* ((arg (or arg 1))
(abs-arg (abs arg))
(step (if (> arg 0) 1 -1))
@@ -276,13 +276,13 @@ ARG is the number of lines to move."
(defun iscroll-next-line (&optional arg _)
"Smooth `next-line'.
ARG is the number of lines to move."
(interactive "p")
(interactive "^p")
(iscroll-forward-line arg))
(defun iscroll-previous-line (&optional arg _)
"Smooth `previous-line'.
ARG is the number of lines to move."
(interactive "p")
(interactive "^p")
(iscroll-forward-line (- (or arg 1))))
(defvar iscroll-mode-map (make-sparse-keymap)