Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I increase font size in RStudio Help pane?

Tags:

rstudio

I use glasses for presbyopia, and can read all other panes, but often have to open R for help, because of its bigger font size, although I find it inconvenient.

I haven't found any answer in support.rstudio.com ; somebody else asked this same question in 2014.

I am using a MacBook Air with macOS Sierra 10.12.1, RStudio 1.0.44 and R 3.3.2

Thanks!

like image 562
Elias Avatar asked Dec 07 '16 16:12

Elias


2 Answers

Open "...\RStudio\resources\R.css" file in your RStudio installation folder with a text editor. In the beginning of the file you will see:

body, td {
   font-family: sans-serif;
   font-size: 10pt;
}

That is the setting you are looking for. Change font-size to anything you want.

like image 68
rszengin Avatar answered Sep 20 '22 22:09

rszengin


This feature is now implemented on RStudio since version 1.3, as tracked on this GitHub issue.

Modify font size in: Tools -> Global options -> General -> Advanced -> Help panel font size

like image 30
robertspierre Avatar answered Sep 19 '22 22:09

robertspierre