Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any good editor for gnuplot?

I have been looking for good gnuplot editor for a while without success. I am using the gedit with gnuplot syntax highlight plugin, but it doen't work well. Does anyone know a good editor though?

like image 891
hmitcs Avatar asked Dec 29 '25 05:12

hmitcs


1 Answers

I use gedit (Linux only, I think), that has a good support for syntax highlighting for any language. I remember I had to manually add an additional highlighting file that can be downloaded here, but maybe current versions include that file.

You can checkout here for some technical details.

Edit: Once you have downloaded the gnuplot.lang file, just run these two commands and restart gedit (From bugs.debian.org). Works perfectly.

sudo cp gnuplot.lang /usr/share/gtksourceview-3.0/language-specs/
sudo chmod 644 /usr/share/gtksourceview-3.0/language-specs/gnuplot.lang
like image 69
kebs Avatar answered Jan 01 '26 01:01

kebs