How to increase the font size in Context-Sensitive Autocompletion?
Suggested by @ihojnicki, another solution is:
create a file named
~/.Mathematica/FrontEnd/frontend.css
;append the following configuration to
frontend.css
:* { font-size:16pt; font-family:"Griffy"; }
- done.
Inspired by the solution from Font size for help drop down menu in input cell, my solution is as followed:
Go to menu Format / Edit Stylesheet. this will open the style configuration similar as the left of the following image.
Open
Core.nb
in$InstallationDirectory/SystemFiles/FrontEnd/Stylesheets
. This doc looks as the right of the following image.Copy the cells "CodeAssistCompletion" and "CodeAssistCompletionHighlight" from Core.nb to the opened window in
1.
, and format these two cells by configuringmenu -> Fromat -> Size
.
Done. This configuration increases the font size only for this notebook, not for global setting.
I am still looking forward to a permanent global setting.
Launch Mathematica
from the terminal
in Ubuntu 19.04
with the following command:
QT_SCALE_FACTOR=1.5 Mathematica
The font size in the Context-Sensitive Autocompletion
increases, except for the font in the pop-up window blurs.