branch: elpa/gnuplot commit 85bd75c513f9a9eb35c6c10a5400ffd8af9e6192 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Update docstrings --- gnuplot-context.el | 16 +++++----------- gnuplot.el | 22 ++++++---------------- 2 files changed, 11 insertions(+), 27 deletions(-) diff --git a/gnuplot-context.el b/gnuplot-context.el index 03b598d03e..4b003d3435 100644 --- a/gnuplot-context.el +++ b/gnuplot-context.el @@ -49,12 +49,10 @@ ;; for some reason, call the function ;; `gnuplot-context-sensitive-mode', which behaves like a minor mode. ;; -;; With `eldoc-mode' support, gnuplot-mode will show one-line syntax -;; hints automatically in the echo area. Whether eldoc-mode is active -;; or not, you can always pop up a longer description of syntax using -;; `gnuplot-help-function' (C-c C-/ or C-c M-h). ElDoc uses an additional -;; file of help strings, `gnuplot-eldoc.el', which is provided with this -;; package. +;; With `eldoc-mode' support, `gnuplot-mode' will show one-line syntax +;; hints automatically in the echo area. Whether `eldoc-mode' is +;; active or not, you can always pop up a longer description of syntax +;; using `gnuplot-help-function' (C-c C-/ or C-c M-h). ;; ;; Internal details ;; ================ @@ -2190,11 +2188,7 @@ summaries appear in the echo area as you type, toggle To choose whether to use this mode by default in Gnuplot buffers, customize the variable -`gnuplot-use-context-sensitive-completion'. - -Note: help strings for eldoc-mode and \\[gnuplot-help-function] -need to be provided in an Emacs-readable form by the Gnuplot -distribution. See gnuplot-context.el for details." +`gnuplot-use-context-sensitive-completion'." :keymap `((,(kbd "C-c C-/") . gnuplot-help-function) (,(kbd "C-c C-d") . gnuplot-info-at-point)) diff --git a/gnuplot.el b/gnuplot.el index a0d79b48cd..c6cb98c74a 100644 --- a/gnuplot.el +++ b/gnuplot.el @@ -1871,22 +1871,12 @@ Report bugs at https://github.com/emacs-gnuplot/gnuplot/issues ------O------ -Gnuplot-mode includes two different systems for keyword -completion and documentation lookup: a newer one, -`gnuplot-context-sensitive-mode' (enabled by default), and a -older one which extracts keywords from gnuplot's Info file. Both -systems allow looking up documentation in the Info file. The -older system also depends having the info file properly installed -to make a list of keywords. - -The info file should be installed by default with the Gnuplot -distribution, or is available at the `gnuplot-mode' web page: -https://github.com/emacs-gnuplot/gnuplot/ - -With the new context-sensitive mode active, `gnuplot-mode' can also -provide function/`eldoc-mode' syntax hints as you type. This requires a -separate file of strings, `gnuplot-eldoc.el', which is also -provided by recent Gnuplot distributions. +Gnuplot-mode includes two different systems for keyword completion and +documentation lookup: a newer one, `gnuplot-context-sensitive-mode' +(enabled by default), and a older one which extracts keywords from +gnuplot's Info file. Both systems allow looking up documentation in the +Info file. With the context-sensitive mode active, `gnuplot-mode' can +also provide Eldoc syntax hints as you type. ------O------