Skip to content

emacs-gnuplot/gnuplot

Repository files navigation

Gnuplot for Emacs

GNU Emacs NonGNU ELPA NonGNU-devel ELPA MELPA MELPA Stable

This package allows running gnuplot files from within the GNU Emacs editor. It features:

  • Syntax highlighting and indentation for gnuplot scripts.
  • Pull-down menus for common gnuplot-related tasks.
  • Interactive gnuplot sessions using comint.
  • Context-sensitive completion.
  • Inline display of gnuplot plots.

It is recommended to run gnuplot-mode on GNU Emacs 25 or above, using gnuplot version 5.0 or above.

Installation

The easiest way to install gnuplot-mode is to directly get it from NonGNU ELPA or MELPA. After configuring Emacs to use MELPA, you should be able to install gnuplot-mode by typing

M-x install-package RET gnuplot RET

or do M-x list-packages and search for gnuplot in the list.

Configuration

gnuplot-mode is enabled automatically for *.gp files. The function gnuplot-info-lookup-symbol looks at the Gnuplot info file.

Usage

Apart from enabling gnuplot-mode automatically for *.gp files, these functions are useful for starting up gnuplot-mode:

  • M-x run-gnuplot : start gnuplot repl
  • M-x gnuplot-mode : start gnuplot-mode in the current buffer
  • M-x gnuplot-make-buffer : open a new buffer (which is not visiting a file) and start gnuplot-mode in that buffer

Bindings

When gnuplot-mode is on, the following keybindings are available:

C-c C-lsend current line to gnuplot
C-c C-vsend current line to gnuplot and move forward 1 line
C-c C-rsend current region to gnuplot
C-c C-bsend entire buffer to gnuplot
C-c C-fsend a file to gnuplot
C-c C-iinsert filename at point
C-c C-nnegate set option on current line
C-c C-ccomment region
C-c C-oset arguments for command at point
S-mouse-2set arguments for command under mouse cursor
C-c C-dread the gnuplot info file
C-c C-eshow gnuplot buffer
C-c C-kkill gnuplot process
C-c C-zcustomize gnuplot-mode
M-tabcomplete keyword before point
tabindent current line

With the exception of the commands for sending commands to Gnuplot, most of the above commands also work in the Gnuplot comint buffer, in addition to the following:

M-C-pplot the most recent script buffer line-by-line
M-C-fsave the current script buffer and load that file
C-c C-epop back to most recent script buffer

Context-sensitive keyword completion

By default gnuplot-mode will try to parse your commands as you type and suggest only relevant completion candidates on typing M-TAB or TAB. For example, with point after the with of a plot command, tab completion will suggest only plotting styles. This also enables more specific help topic lookup in the gnuplot info file.

If the context-sensitivity annoys you, you can get simple non-context-sensitive completion back by toggling gnuplot-context-sensitive-mode.

By its nature, the completion code has to know a fair bit about the structure of the gnuplot language. If you use it with an old version of gnuplot (pre version 4) it will make mistakes. Most of gnuplot 4.6’s command language is parsed correctly except for the set terminal commands.

Eldoc mode

gnuplot-mode can show syntax hints in the modeline when eldoc-mode is turned on and context sensitivity is enabled.

Inline Images

You can optionally have plots displayed inline in the Gnuplot comint process buffer. This is handy for trying things out without having to switch between Emacs and the Gnuplot display. Call gnuplot-inline-display-mode in a gnuplot-mode buffer to try it out. This feature is implemented using temporary png files, and is also somewhat experimental. It requires Gnuplot to have png support and a GNU Emacs with image support. Please report bugs.

FAQ / Remarks

Usage on Windows

Multiple users have reported issues when trying to work with gnuplot.el on Windows. Most notably, the gnuplot process hangs after sending a first line of input (this is a common Emacs issue on Windows, see here).

A partial workaround was to use pgnuplot.exe as the gnuplot-program. However, pgnuplot.exe is not included with gnuplot since version 5.0.

You currently have two solutions:

  1. Experiment using the gnuplot-program and gnuplot-program-args variables. For instance, setting
    (setq gnuplot-program "/path/to/cmdproxy.exe")
    (setq gnuplot-program-args "/C /path/to/gnuplot.exe")
        

    has been reported to work (see here for a reference).

  2. Use the simpler gnuplot-mode package that sends the entire buffer to gnuplot. Since no comint is involved, it should function correctly, but you lose most features of the gnuplot.el package. We would like to implement a send-buffer without comint as well eventually.

More information on gnuplot.el and Windows can be found on these threads: 1, 2

Pause Command

Gnuplot’s pause -1 command, which waits for the user to press a key, is problematic when running under Emacs. Sending pause -1 to the running gnuplot process will make Emacs appear to freeze. (It isn’t really crashed: typing C-g will unlock it and let you continue). The workaround for now is to make Gnuplot output a string before pausing, by doing pause -1 "Hit return" or similar.

Issue with Unicode Character Display

Some users have reported issues when trying to display unicode characters. This issue is likely due to your distribution bundling gnuplot with editline instead of readline. Recompiling the source with support for unicode should fix the issue until this issue is fixed upstream. Thanks to rolandog for discovering this fix.

Maintenance

Regenerate gnuplot.texi and gnuplot-eldoc.el from the Gnuplot source.

  1. emacs -batch -l doc2texi.el -f d2t-doc-to-texi inside the gnuplot-*/docs/ directory
  2. makeinfo --no-split gnuplot.texi and ensure that it compiles cleanly

About

A major mode for Emacs for interacting with Gnuplot

Resources

License

Stars

Watchers

Forks

Contributors