[highlighting]
is_line_number = true
token_charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"
vec_extention = ["gnuplot"]
vec_filename = []
single_line_comment = "#"
multi_line_comment_begin = ""
multi_line_comment_end = ""
is_escape_char = true
example = """
set terminal png notransparent crop enhanced size 800,600 font "arial,14"
set grid xtics ytics mytics
set key out vert center top
set logscale y
set xlabel "nb elements"
set ylabel "elapsed time per element [cy/el]"
set output "benchAutoVecLaplacianLightCyElapsedTime_cyEl.png"
plot "autovec_laplacian_light_O2_perf.txt" using 2:6:7:8 title "autovec laplacian light O2" with yerrorlines lw 2,"autovec_laplacian_light_O3_perf.txt" using 2:6:7:8 title "autovec laplacian light O3" with yerrorlines lw 2,"autovec_laplacian_light_Ofast_perf.txt" using 2:6:7:8 title "autovec laplacian light Ofast" with yerrorlines lw 2,
set xlabel "nb elements"
set ylabel "elapsed time [cy]"
set output "benchAutoVecLaplacianLightCyElapsedTime_cy.png"
plot "autovec_laplacian_light_O2_perf.txt" using 2:3:4:5 title "autovec laplacian light O2" with yerrorlines lw 2,"autovec_laplacian_light_O3_perf.txt" using 2:3:4:5 title "autovec laplacian light O3" with yerrorlines lw 2,"autovec_laplacian_light_Ofast_perf.txt" using 2:3:4:5 title "autovec laplacian light Ofast" with yerrorlines lw 2,
"""
[[keyword]]
style = "dsKeyword"
vec_token = [
"set",
"unset",
"plot",
]
vec_match = []
[[keyword]]
style = "dsGnuplotAttribute"
vec_token = [
"$",
"terminal",
"cblabel",
"palette",
"key",
"view",
"enhanced",
"size",
"font",
"grid",
"xtics",
"ytics",
"mytics",
"logscale",
"xlabel",
"ylabel",
"output",
"using",
"title",
"with",
"cbtics",
]
vec_match = []
[[keyword]]
style = "dsGnuplotValue"
vec_token = [
"png",
"notransparent",
"transparent",
"x",
"y",
"lines",
"lw",
"cb",
"map",
"labels",
"xticlabel",
"yticlabel",
"image",
"sprintf",
"yerrorlines",
]
vec_match = []
[[getuntil]]
style = "dsGnuplotString"
start_token = "\""
end_token = "\""
[[getuntil]]
style = "dsGnuplotString"
start_token = "'"
end_token = "'"
[[getuntil]]
style = "dsDocMono"
start_token = "#"
end_token = "\n"
[[sequence]]
style = "dsNumber"
vec_step = [
{oneof = "1234567890"},
{oneof = "lu"}
]
[[sequence]]
style = "dsNumber"
vec_step = [
{token = "."},
{oneof = "1234567890"},
{oneof = "f"}
]