Merge branch 'master' into debian

This commit is contained in:
Dima Kogan 2013-09-23 06:07:29 -07:00
commit bbd2a44bf9
3 changed files with 822 additions and 363 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,43 +1,46 @@
complete -W \ complete -W \
' \ ' \
--domain \ --3d \
--dataid \ --autolegend \
--3d \ --binwidth \
--colormap \ --circles \
--stream \ --colormap \
--lines \ --curvestyle \
--points \ --curvestyleall \
--circles \ --dataid \
--xlabel \ --domain \
--ylabel \ --dump \
--y2label \ --exit \
--zlabel \ --extraValuesPerPoint \
--zlabel \ --extracmds \
--title \ --geometry \
--autolegend \ --hardcopy \
--xlen \ --help \
--xmin \ --histogram \
--xmax \ --histstyle \
--ymin \ --legend \
--ymax \ --lines \
--y2min \ --maxcurves \
--y2max \ --monotonic \
--zmin \ --points \
--zmax \ --square \
--y2 \ --square_xy \
--curvestyleall \ --stream \
--extracmds \ --terminal \
--square \ --timefmt \
--square_xy \ --title \
--hardcopy \ --version \
--maxcurves \ --xlabel \
--monotonic \ --xlen \
--extraValuesPerPoint \ --xmax \
--dump \ --xmin \
--geometry \ --y2 \
--curvestyle \ --y2label \
--histogram \ --y2max \
--binwidth \ --y2min \
--histstyle \ --ylabel \
--terminal \ --ymax \
--legend' feedgnuplot --ymin \
--zlabel \
--zmax \
--zmin' feedgnuplot

View File

@ -1,44 +1,48 @@
#compdef feedgnuplot #compdef feedgnuplot
_arguments -S \ _arguments -S \
'()--domain[first element of each line is the domain variable]' \ '()--domain[first element of each line is the domain variable]' \
'--dataid[each data point is preceded by the corresponding ID]' \ '--dataid[each data point is preceded by the corresponding ID]' \
'(--monotonic --xlen --histogram)--3d' \ '(--monotonic --xlen --histogram)--3d' \
'--colormap[show a colormapped xy plot]' \ '--colormap[show a colormapped xy plot]' \
'--stream[Plot the data in realtime]::period in s:' \ '--stream[Plot the data in realtime]::period in s:' \
'--lines' \ '--lines' \
'--points' \ '--points' \
'--circles' \ '--circles' \
'--xlabel:X-axis label:' \ '--xlabel:X-axis label:' \
'--ylabel:Y-axis label:' \ '--ylabel:Y-axis label:' \
'--y2label:Y2-axis label:' \ '--y2label:Y2-axis label:' \
'--zlabel:Z-axis label:' \ '--zlabel:Z-axis label:' \
'--zlabel:Z-axis label:' \ '--zlabel:Z-axis label:' \
'--title:Plot title:' \ '--title:Plot title:' \
'--autolegend[Label each plot with its data ID]' \ '--autolegend[Label each plot with its data ID]' \
'(--3d)--xlen[the size of the x-window to plot]::window size:' \ '(--3d)--xlen[the size of the x-window to plot]::window size:' \
'--xmin:min X:' \ '(--xlen)--xmin:min X:' \
'--xmax:max X:' \ '(--xlen)--xmax:max X:' \
'--ymin:min Y:' \ '--ymin:min Y:' \
'--ymax:max Y:' \ '--ymax:max Y:' \
'--y2min:min Y2:' \ '--y2min:min Y2:' \
'--y2max:max Y2:' \ '--y2max:max Y2:' \
'--zmin:min Z:' \ '--zmin:min Z:' \
'--zmax:max Z:' \ '--zmax:max Z:' \
'*--y2:plot to place on the Y2 axis:' \ '*--y2:plot to place on the Y2 axis:' \
'--curvestyleall[Additional styles for ALL curves]:' \ '--curvestyleall[Additional styles for ALL curves]:style' \
'*--extracmds[Additional gnuplot commands]:' \ '*--extracmds[Additional gnuplot commands]:command' \
'--square[Plot data with square aspect ratio]' \ '--square[Plot data with square aspect ratio]' \
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \ '--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
'--hardcopy[Plot to a file]:' \ '--hardcopy[Plot to a file]:filename' \
'--maxcurves[The maximum allowed number of curves]:' \ '--maxcurves[The maximum allowed number of curves]:number of curves' \
'(--3d)--monotonic[Resets plot if an X in the past is seen]' \ '(--3d)--monotonic[Resets plot if an X in the past is seen]' \
'--extraValuesPerPoint[How many extra values are given for each data point]:' \ '--extraValuesPerPoint[How many extra values are given for each data point]:N'\
'--dump[Instead of printing to gnuplot, print to STDOUT]' \ '--dump[Instead of printing to gnuplot, print to STDOUT]' \
'--geometry[The X11 geometry string]:geometry string:' \ '--geometry[The X11 geometry string]:geometry string:' \
'*--curvestyle[Additional styles for a curve]:curve id: :style:' \ '*--curvestyle[Additional styles for a curve]:curve id: :style:' \
'(--3d)*--histogram:plot to treat as a histogram:' \ '(--3d)*--histogram:plot to treat as a histogram:' \
'--binwidth:Histogram bin width:' \ '--binwidth:Histogram bin width:' \
'--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \ '--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \
'--terminal:Terminal options to set with "set terminal":' \ '--terminal:Terminal options to set with "set terminal":' \
'*--legend[Legend for a curve]:curve id: :legend:' '*--legend[Legend for a curve]:curve id: :legend:' \
'--exit[Exit gnuplot after making the plot]' \
'--version' \
'--help' \
'--timefmt[Format for time/date data]:time format'