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

@@ -209,6 +209,7 @@ Cons cell containing the token type and string representation."
(`?>
(prog1 (ess-backward-char)
(or (ess-climb-token--char ?|)
(ess-climb-token--char ?=)
(ess-climb-token--char ?-)
(and (looking-back "->" (- (point) 2))
(goto-char (- (point) 2))))))
@@ -313,7 +314,7 @@ content. Return nil when the end of the buffer is reached."
"==" "!=" "<" "<=" ">=" ">"
"=" "<-" "<<-" "->" "->>"
"$" "@" ":" "::" ":::" ":="
"|>"))
"|>" "=>"))
(defvar ess-r-keywords-re
(concat (regexp-opt ess-r-keywords-list) "\\_>"))
@@ -671,16 +672,16 @@ content. Return nil when the end of the buffer is reached."
(let ((current (ess-parse-start-token (ess-parser-advance)))
(power (or power 0))
(next (ess-parser-next-token))
(last-sucessful-pos (point))
(last-successful-pos (point))
last-success)
(setq last-success current)
(while (and current (< power (ess-parser-power next)))
(ess-parser-advance)
(when (setq current (ess-parse-infix-token next current))
(setq last-sucessful-pos (point))
(setq last-successful-pos (point))
(setq last-success current))
(setq next (ess-parser-next-token)))
(goto-char last-sucessful-pos)
(goto-char last-successful-pos)
last-success))
(defun ess-parse-arglist (power start-token)