Re: [ESS] looking for definitions of R functions

2018-06-22 Thread Lionel Henry via ESS-help
The development version is integrated with xref based on function srcrefs. It should work with sourced scripts and local packages installed with srcrefs. We'll try to make it work with non-local packages as well. Lionel > On 22 juin 2018, at 11:15, Stephen Eglen via ESS-help > wrote: > >

Re: [ESS] Printing tibbles in iESS

2018-12-04 Thread Lionel Henry via ESS-help
This is a known bug: https://github.com/emacs-ess/ESS/issues/759 Best, Lionel > On 4 Dec 2018, at 17:14, Kevin Wright via ESS-help > wrote: > > I have a tibble that is printing like this in the iESS buffer: > > # A tibble: 74 x 15 > expt

Re: [ESS] R 4.0

2020-04-18 Thread Lionel Henry via ESS-help
macOS filesystems are indeed case insensitive by default (you can format with sensitivity enabled if you like), but this is not necessarily a concern here. On macOS, R is typically installed as a "framework". In that case we use RSwitch.app to change the version that the `R` symlink points to.

Re: [ESS] -> and spaces

2020-11-26 Thread Lionel Henry via ESS-help
Hello, I think this is https://github.com/emacs-ess/ESS/issues/948 Best, Lionel On 11/26/20, Kasper Daniel Hansen via ESS-help wrote: > Thanks for the work on ESS over the ages. I am happy to see that there is > development happening still. > > I have the following code in my .emacs which I

Re: [ESS] ess-watch over tramp

2021-01-19 Thread Lionel Henry via ESS-help
This is https://github.com/emacs-ess/ESS/issues/1047 Best, Lionel On 1/19/21, Jeremie Juste via ESS-help wrote: > Hello, > > I would like to use ess-watch from a remote session but I receive the > follow error. When I execute M-x ess-watch > > Error in as.environment("ESSR") : > no item called

Re: [ESS] spurious (list ....)

2021-02-17 Thread Lionel Henry via ESS-help
Hello, This is a known issue with ESS 18.10 and Emacs 27. Either dowgrade Emacs or install dev ESS to fix this. A new release is much needed but there's still a bunch of problems to solve. We're aiming for an April release. As a workaround you can add this to your config: ``` (setq

Re: [ESS] Advice on setting up ESS to edit and knit Rmarkdown files

2021-09-22 Thread Lionel Henry via ESS-help
We'd love to do a release but ESS is not in a good place right now. Recent versions of Emacs interrupt background commands (essential to completion and contextual help like eldoc) when the user starts typing, which causes hard to solve problems. The dev branch is mostly working but not 100%

Re: [ESS] Can't find documentation for function

2022-09-19 Thread Lionel Henry via ESS-help
Hi Haris, That is because ESS intercepts `?` calls instead of evaluating them. As a workaround you can call the devtools implementation of `?` manually: ``` pkgload:::shim_help(foo) ``` I'd like to do better as it would improve my day-to-day but this hasn't been a priority. Best, Lionel On

Re: [ESS] Debian installation bug report with current package and Emacs 28.1

2022-09-13 Thread Lionel Henry via ESS-help
Martin, did you have other concerns besides the freeze that we have determined is an interaction between polymode and large `.libPaths()`, rather than a bug in ESS? If not, I think we should think about a release. Best, Lionel On 9/13/22, Dirk Eddelbuettel via ESS-help wrote: > > A follow-up

Re: [ESS] How can one tell rlang not to mess up R session in ESS ?

2023-11-14 Thread Lionel Henry via ESS-help
Worth noting I'm using `xterm-color` instead of `ansi-color` in my comint buffers. IIRC the latter (which is builtin) didn't support some features. Not sure if that could explain the bad behaviour you've observed. Best, Lionel On 11/14/23, Martin Maechler via ESS-help wrote: >> Dirk

Re: [ESS] How can one tell rlang not to mess up R session in ESS ?

2023-11-13 Thread Lionel Henry via ESS-help
See the cli website for disabling colours: https://cli.r-lib.org/reference/faq.html#how-do-i-turn-off-ansi-colors-and-styles- I use nord-theme too and I see I have this in my config, in case that helps (I trimmed down this snippet manually, there might be a typo): ```lisp (let ((class '((class

Re: [ESS] How can one tell rlang not to mess up R session in ESS ?

2023-11-13 Thread Lionel Henry via ESS-help
> Do you use this instead of the nord theme, or on top of the nord > theme? Can you (briefly) describe what it does / what you like about > this addition? I use it on top. This snippet comes in between loading and activation: ``` (require 'nord-theme) (load-theme 'nord) *snippet*