Es wäre sehr Hilfreich, wenn man bei Opt("ExpandVarStrings", 1) ebenfalls eine farbliche Unterscheidung implementiert werden kann.
denn die Varibale im String $sVariable$ geht unter.
Farbschema bei ExpandVarStrings
Farbschema bei ExpandVarStrings
99 bugs in the code, 99 bugs.
take one down fix it around, 117 bugs in the code....
take one down fix it around, 117 bugs in the code....
Re: Farbschema bei ExpandVarStrings
Kannst du da ein Beispiel posten?
Denn Variablen werden ja ohnehin extra hervorgehoben.
Denn Variablen werden ja ohnehin extra hervorgehoben.
Re: Farbschema bei ExpandVarStrings
Opt("ExpandVarStrings", 0)
$a = "Name"
$b = "Max"
$c = "25"
$sTestString = "Hallo mein " &$a&" ist "&$b& " und ich bin "&$c&" Jahre alt."
----------------------------------------------------------------------------------------
Opt("ExpandVarStrings", 1)
$a = "Name"
$b = "Max"
$c = "25"
Aktuell:
$sTestString = "Hallo mein $a$ ist $b$ und ich bin $c$ Jahre alt."
Soll:
$sTestString = "Hallo mein $a$ ist $b$ und ich bin $c$ Jahre alt."
$a = "Name"
$b = "Max"
$c = "25"
$sTestString = "Hallo mein " &$a&" ist "&$b& " und ich bin "&$c&" Jahre alt."
----------------------------------------------------------------------------------------
Opt("ExpandVarStrings", 1)
$a = "Name"
$b = "Max"
$c = "25"
Aktuell:
$sTestString = "Hallo mein $a$ ist $b$ und ich bin $c$ Jahre alt."
Soll:
$sTestString = "Hallo mein $a$ ist $b$ und ich bin $c$ Jahre alt."
99 bugs in the code, 99 bugs.
take one down fix it around, 117 bugs in the code....
take one down fix it around, 117 bugs in the code....
Re: Farbschema bei ExpandVarStrings
Aber SciTe4AutoIt macht das auch nicht so oder irre ich mich da?
Re: Farbschema bei ExpandVarStrings
nein macht es leider auch nicht. Wäre aber nice to have 

99 bugs in the code, 99 bugs.
take one down fix it around, 117 bugs in the code....
take one down fix it around, 117 bugs in the code....
Re: Farbschema bei ExpandVarStrings
Hmm wüsste jetzt nicht wie ich das Realisieren kann da der Style der Variable ja durch das " " überschrieben wird.
Re: Farbschema bei ExpandVarStrings
hm kann man das nicht durch die zwei $$ dollar Zeichen erkennen?
99 bugs in the code, 99 bugs.
take one down fix it around, 117 bugs in the code....
take one down fix it around, 117 bugs in the code....
Re: Farbschema bei ExpandVarStrings
Nunja erkenen vlt schon. Das Problem ist hier das der gesamte Block als String erkannt wird (durch dir " " Zeichen)