4

People are going to great lengths to get the gedit R plugin back by downgrading gedit. I tried, but couldn't make those instructions work. Mostly now I'm sad. RStudio is shiny and everything, but it is just so slow and annoyingly over-helpful. And nothing else seems to approach the elegance and "minimality" of RGedit.

Is RGedit going away forever? Are there any plans to bring it into the new gedit that ships with 16.04? What would I have to learn in order to bring it back? What sort of programming would needed, and how hard would it be? I'm not really fluent in anything but R...

2 Answers2

1

As you can see on the rgedit homepage it has not been maintained since 2013 and this is obviously the reason why it got dropped.

From my personal experience I can tell you a try to get it working with the latest gedit is more than pain in the a** and almost impossible without rewriting the whole plug-in.

As far your downgrade attempts, you should definitively should check out the guide I made for that. There you even find a script which does the downgrade for you.

Videonauth
  • 33,815
1

According to the info provided in the survey link in Mauricio's answer, you can use RGedit with Pluma editor, which is available from the repos:

sudo apt install pluma

Pluma is a fork of gedit2, maintained by Mate desktop project.

Alternatively, I personally felt in love with Sublime Text + sublimeREPL plugin combo, which works splendidly for me. Sublime Text is light and fast and at the same time very advanced editor (and my most favourite piece of software, because it's such a problem solver) and I highly recommend it to anyone who's looking for good editor. The R implementation is almost on par with Rstudio, however it's much lighter on resources. There are keyboard shortcuts for sending code from script to R session, you can make plots (making screenshots of just focused window saves plots without window decorations, at least in elementaryOS on my small netbook, where I use this setup), navigate console history on a minimap (including printed help). As a bonus (compared to gedit), Sublime Text has the best and most flexible implementation of multiple cursors I've seen so far (e.g. Rstudio has it, but rather cumbersome to use practically), which is a huge helper every day.

jena
  • 426