Re: [ESS] Ess in emacs on mac

2017-02-27 Thread Lionel Henry
Hi Luping, This is normal and part of ESS initialisation, but it has always bugged me as well. I think we should make this output silent. Lionel > On 27 févr. 2017, at 10:10, Luping Zhang wrote: > > To whom may concern > Sorry for bothering you. But I have a question

Re: [ESS] Ess in emacs on mac

2017-02-27 Thread Lionel Henry
as an R user I'd > rather like to notice. So this was visibly quite on purpose. > > Martin > >> >>>> On Mon, Feb 27 2017 13:54, Lionel Henry wrote: >> >>> Hi Luping, >> >>> This is normal and part of ESS initialisation, but it has

Re: [ESS] (test) Eval function..

2016-12-19 Thread Lionel Henry
> On 19 déc. 2016, at 10:25, Vitalie Spinu wrote: > > Maybe we can test for existence of the package and re-direct to standard > evaluation if it does not exist? I would imagine this error is quite confusing > for someone who doesn't know what's going on. Yup that makes

Re: [ESS] Ever consider changing indentation on #?

2017-05-08 Thread Lionel Henry
> On 8 mai 2017, at 09:07, Stephen Eglen wrote: > >> Let's say that following the R engine indentation style has been coldly >> received. > > Oh dear! I personally think supporting the style from the R parser (if > that is intended, perhaps it is not?) would be good. That's

[ESS] magit kickstarter

2017-09-04 Thread Lionel Henry
Hi everyone, Magit is one of those features that makes Emacs special. It is an interface to git that simplifies many workflows and is a joy to work with. Several ESS developers including myself use it on a regular basis. If you don't use magit for your git tasks, I highly recommend it. For those

Re: [ESS] starting directory not detected correctly anymore

2017-12-02 Thread Lionel Henry
Startup in the project/package root is experimental and isn't enabled by default. Is it possible you are using a dev version from a month or so ago? For instance you could have installed it with melpa. The released version or the current dev version should not exhibit that behaviour. Best,

Re: [ESS] starting directory not detected correctly anymore

2017-12-12 Thread Lionel Henry
It seems there is an issue with Emacs 24, I'll look into it. Could you open a github issue please? And confirm there that you still see the problem when you open Emacs with -q flag (to prevent loading of init file). Lionel > On 12 déc. 2017, at 06:29, Susumu Tanimura

Re: [ESS] make problems with latest git

2018-03-06 Thread Lionel Henry
Could you please try again with the latest master. If it still doesn't work, please open an issue and we'll figure it out from there. Best, Lionel > On 6 mars 2018, at 19:25, Ross Boylan wrote: > > On Tue, Mar 06, 2018 at 10:18:13AM -0800, Ross Boylan wrote: > ... >>

Re: [ESS] ess-dump-object-into-edit-buffer

2018-04-12 Thread Lionel Henry
I think we should adjust the max lines before calling dump(). In the mean time you can do it manually: options(deparse.max.lines = NA) The reason for the change of behaviour is this change in R: https://github.com/wch/r-source/commit/201ddbd16e8f410c469dcd4695471c0bedd65dd5 dput() and

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
k instead of disabling it). It might be worth discussing in an issue on Github in that case. Best, Lionel On 11/13/23, Dirk Eddelbuettel wrote: > > Thanks Lionel. I was pretty sure I could count on a non-empty intersection > between ESS and rlang... > > On 13 November 2023 at 1