@@ -58,30 +58,30 @@ as entry points:
58
58
59
59
When =gnuplot-mode= is on, the following keybindings are available:
60
60
61
- | C-c C-l | send current line to gnuplot |
62
- | C-c C-v | send current line to gnuplot and move forward 1 line |
63
- | C-c C-r | send current region to gnuplot |
64
- | C-c C-b | send entire buffer to gnuplot |
65
- | C-c C-f | send a file to gnuplot |
66
- | C-c C-i | insert filename at point |
67
- | C-c C-n | negate set option on current line |
68
- | C-c C-c | comment region |
69
- | C-c C-o | set arguments for command at point |
70
- | S- mouse-2 | set arguments for command under mouse cursor |
71
- | C-c C-d | read the gnuplot info manual |
72
- | C-c C-e | show gnuplot buffer |
73
- | C-c C-k | kill gnuplot process |
74
- | C-c C-z | customize gnuplot-mode |
75
- | M-tab | complete keyword before point |
76
- | tab | indent current line |
61
+ | = C-c C-l= | send current line to gnuplot |
62
+ | = C-c C-v= | send current line to gnuplot and move forward 1 line |
63
+ | = C-c C-r= | send current region to gnuplot |
64
+ | = C-c C-b= | send entire buffer to gnuplot |
65
+ | = C-c C-f= | send a file to gnuplot |
66
+ | = C-c C-i= | insert filename at point |
67
+ | = C-c C-n= | negate set option on current line |
68
+ | = C-c C-c= | comment region |
69
+ | = C-c C-o= | set arguments for command at point |
70
+ | =S-< mouse-2>= | set arguments for command under mouse cursor |
71
+ | = C-c C-d= | read the gnuplot info manual |
72
+ | = C-c C-e= | show gnuplot buffer |
73
+ | = C-c C-k= | kill gnuplot process |
74
+ | = C-c C-z= | customize gnuplot-mode |
75
+ | =M-TAB= | complete keyword before point |
76
+ | =TAB= | indent current line |
77
77
78
78
With the exception of the commands for sending commands to Gnuplot, most of the
79
79
above commands also work in the Gnuplot comint buffer, in addition to the
80
80
following:
81
81
82
- | M-C-p | plot the most recent script buffer line-by-line |
83
- | M-C-f | save the current script buffer and load that file |
84
- | C-c C-e | pop back to most recent script buffer |
82
+ | = M-C-p= | plot the most recent script buffer line-by-line |
83
+ | = M-C-f= | save the current script buffer and load that file |
84
+ | = C-c C-e= | pop back to most recent script buffer |
85
85
86
86
** Context-sensitive keyword completion
87
87
@@ -125,8 +125,8 @@ two solutions:
125
125
instance the following setting has been reported to work (see [[https://github.com/emacs-gnuplot/gnuplot/pull/33/files][here]]).
126
126
127
127
#+begin_src emacs-lisp
128
- (setq gnuplot-program "/path/to/cmdproxy.exe")
129
- (setq gnuplot-program-args "/C /path/to/gnuplot.exe")
128
+ (setq gnuplot-program "/path/to/cmdproxy.exe"
129
+ gnuplot-program-args "/C /path/to/gnuplot.exe")
130
130
#+end_src
131
131
132
132
2. Try the simpler [[https://github.com/mkmcc/gnuplot-mode][gnuplot-mode]] package that sends the entire buffer to Gnuplot.
0 commit comments