From 29905c1496f08516f9db737a4140cb87cf8b24b9 Mon Sep 17 00:00:00 2001 From: Alexey Shiklomanov Date: Mon, 23 Dec 2019 16:32:45 -0500 Subject: [PATCH] Fix deprecated ESS variables - `ess-smart-S-assign-key` and `ess-expression-offset` are deprecated variables - `ess-default-style` has been replaced with `ess-style` --- modules/lang/ess/config.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/lang/ess/config.el b/modules/lang/ess/config.el index 6a9326adc..381a87bf5 100644 --- a/modules/lang/ess/config.el +++ b/modules/lang/ess/config.el @@ -10,15 +10,13 @@ (use-package! ess :commands stata SAS :init - (setq ess-smart-S-assign-key nil) (unless (featurep! :lang julia) (add-to-list 'auto-mode-alist '("\\.jl\\'" . ess-julia-mode))) :config (setq ess-offset-continued 'straight - ess-expression-offset 2 ess-use-flymake (not (featurep! :tools flycheck)) ess-nuke-trailing-whitespace-p t - ess-default-style 'DEFAULT + ess-style 'DEFAULT ess-history-directory (expand-file-name "ess-history/" doom-cache-dir)) (set-repl-handler! 'ess-r-mode #'+ess/open-r-repl)