pkg update and first config fix
org-brain not working, add org-roam
This commit is contained in:
@@ -262,7 +262,8 @@ Optional argument VERBOSE gives more verbose output."
|
||||
|
||||
(defun ess-fix-dot (before-chars &optional dont-query verbose)
|
||||
"Remove trailing decimal '.' (\"dot\"), before BEFORE-CHARS.
|
||||
Optional argument DONT-QUERY and VERBOSE get passed to `ess-replace-regexp-dump-to-src'."
|
||||
Optional argument DONT-QUERY and VERBOSE get passed to
|
||||
`ess-replace-regexp-dump-to-src'."
|
||||
;; typically, before-chars = "]:" or more
|
||||
(ess-replace-regexp-dump-to-src
|
||||
(concat "\\([0-9]\\)\\.\\( *[" before-chars "]\\)")
|
||||
@@ -283,7 +284,7 @@ than `ess-fix-dot-1'."
|
||||
(ess-fix-dot ",)" dont-query verbose))
|
||||
|
||||
(defun ess-fix-EQ-assign (&optional dont-query verbose not-all)
|
||||
"Replace \"=\" by \"<-\" in places where it 'might make sense', e.g.,
|
||||
"Replace \"=\" by \"<-\" in places where it `might make sense', e.g.,
|
||||
for function assignments and lines not ending in \",\".
|
||||
Be *careful* for list()s of functions and when argument not-all is
|
||||
nil (as by default) !"
|
||||
@@ -448,8 +449,8 @@ Currently, this needs to:
|
||||
2. format the statement,
|
||||
3. c/function/Sfunc/
|
||||
and I need to relearn Emacs lisp (but I had to, anyway."
|
||||
(interactive "sFunction ? ")
|
||||
(declare (obsolete 'ess-execute "ESS 19.04"))
|
||||
(interactive "sFunction ? ")
|
||||
(let* ((buffname "ess-complete.R"))
|
||||
(ess-execute (format "args(%s)" Sfunc) t buffname)
|
||||
(pop-to-buffer (concat "*" buffname "*"))
|
||||
@@ -492,7 +493,7 @@ ARG is ignored."
|
||||
|
||||
(cl-defmethod ess-help-get-topics (proc &context (ess-dialect "R"))
|
||||
"Return a list of current S help topics associated with process PROC.
|
||||
If 'sp-for-help-changed?' process variable is non-nil or
|
||||
If `sp-for-help-changed?' process variable is non-nil or
|
||||
`ess-help-topics-list' is nil, (re)-populate the latter and
|
||||
return it. Otherwise, return `ess-help-topics-list'."
|
||||
(with-ess-process-buffer nil
|
||||
@@ -530,7 +531,7 @@ return it. Otherwise, return `ess-help-topics-list'."
|
||||
;;;###autoload
|
||||
(add-to-list 'auto-mode-alist '("\\.[Ss]t\\'" . S-transcript-mode))
|
||||
;;;###autoload
|
||||
(add-to-list 'auto-mode-alist '("\\.Sout" . S-transcript-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.Sout\\'" . S-transcript-mode))
|
||||
|
||||
(provide 'ess-s-lang)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user