when writing long command lines in gnuplot 5.4 - e.g., plotting several sets of data in one graph - it would be useful if I could jump to specific sections of the command line to edit using my mouse, at the moment I can only do that using the arrow keys, which takes quite a while. Does anyone have any advice on whether its possible to do that using the mouse? Cheers.
I understand that you are using the gnuplot console to type your gnuplot commands to create your graph and you have lengthy commands which you might eventually need to edit.
Why don't you:
reset session
to have default settings)myScript.gp
load 'myScript.gp'
and your script will startload 'myScript.gp'
and press <Enter>. In case you have used many other commands in the meantime, you could also type hist
and you will get the history of commands. Type, e.g. hist!197
if 197
is the number of the command you want to re-execute. Check help history
.I would say that this is more convenient than recalling and editing long lines in the gnuplot console.