1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
From: Aymeric Agon-Rambosson <aymeric.agon@yandex.com>
Date: Sun, 08 Jan 2023 18:37:41 +0100
Subject: Debianise documentation
Forwarded: not-needed
Index: b/README.org
===================================================================
--- a/README.org
+++ b/README.org
@@ -1,11 +1,5 @@
#+TITLE: Gnuplot for Emacs
-#+html: <a href="https://www.gnu.org/software/emacs/"><img alt="GNU Emacs" src="https://github.com/minad/corfu/blob/screenshots/emacs.svg?raw=true"/></a>
-#+html: <a href="https://elpa.nongnu.org/nongnu/gnuplot.html"><img alt="NonGNU ELPA" src="https://elpa.nongnu.org/nongnu/gnuplot.svg"/></a>
-#+html: <a href="https://elpa.nongnu.org/nongnu-devel/gnuplot.html"><img alt="NonGNU-devel ELPA" src="https://elpa.nongnu.org/nongnu-devel/gnuplot.svg"/></a>
-#+html: <a href="https://melpa.org/#/gnuplot"><img alt="MELPA" src="https://melpa.org/packages/gnuplot-badge.svg"/></a>
-#+html: <a href="https://stable.melpa.org/#/gnuplot"><img alt="MELPA Stable" src="https://stable.melpa.org/packages/gnuplot-badge.svg"/></a>
-
This package allows running [[http://www.gnuplot.info/][Gnuplot]] files from within the [[https://www.gnu.org/software/emacs/][GNU Emacs]] editor. It
features:
@@ -18,17 +12,6 @@ features:
It is recommended to use GNU Emacs 28 or above, and Gnuplot version 5.0 or
above.
-* Installation
-
-The easiest way to install =gnuplot= is to directly get it from [[https://elpa.nongnu.org/][NonGNU ELPA]] or
-[[http://melpa.org][MELPA]]. After configuring Emacs to use MELPA, you should be able to install
-=gnuplot= by typing
-
-: M-x install-package RET gnuplot RET
-
-or do =M-x list-packages= and search for =gnuplot= in the list. Note that there is a
-different [[https://github.com/mkmcc/gnuplot-mode][gnuplot-mode]] package on MELPA which is less featureful.
-
* Configuration
In order to customize Gnuplot, use =M-x gnuplot-customize= or set the respective
@@ -113,26 +96,6 @@ display. It requires Gnuplot and Emacs t
* Common issues
-** 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 [[https://www.gnu.org/software/emacs/manual/html_mono/efaq-w32.html#Sub_002dprocesses][here]]). More information on
-=gnuplot.el= and Windows can be found on these threads [[https://github.com/emacs-gnuplot/gnuplot/issues/15][1]] and [[https://github.com/emacs-gnuplot/gnuplot/pull/33][2]]. You currently have
-two solutions:
-
-1. Experiment using the =gnuplot-program= and =gnuplot-program-args= variables. For
- instance the following setting has been reported to work (see [[https://github.com/emacs-gnuplot/gnuplot/pull/33/files][here]]).
-
- #+begin_src emacs-lisp
-(setq gnuplot-program "/path/to/cmdproxy.exe"
- gnuplot-program-args "/C /path/to/gnuplot.exe")
- #+end_src
-
-2. Try the simpler [[https://github.com/mkmcc/gnuplot-mode][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 this package.
-
** Pause Command
Gnuplot's =pause -1= command, which waits for the user to press a key, is
|