QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: zaadstra on April 24, 2021, 02:55:20 pm

Title: QB64 1.5 keywords in capitals?
Post by: zaadstra on April 24, 2021, 02:55:20 pm
Hi,

Is there a way to change the auto correct for KEYWORDS in the IDE back to the old fashion? All keywords were shifted to capitals since ... uhhh .. ages!  Just switching back and forth between 1.4 and 1.5 and I just noticed that.
I think my code is less well readable as the capitals just made the difference between text and my variables.
Hoping there is an option, ... but I don't see it!

Code: QB64: [Select]
  1. Print "Hallo 1.5"
  2. x = InStr(d$, "Childish?")
  3.  

Code: QB64: [Select]
  1. PRINT "Hallo 1.4"
  2. x = INSTR(d$, "this_rocks")
  3.  
Title: Re: QB64 1.5 keywords in capitals?
Post by: SpriggsySpriggs on April 24, 2021, 02:57:52 pm
I think it is in Options and Code Layout
Title: Re: QB64 1.5 keywords in capitals?
Post by: zaadstra on April 24, 2021, 03:28:28 pm
Yay! Missed that completely although that was really the place where I expected it :-)
Thanks,  going on happy coding!
Title: Re: QB64 1.5 keywords in capitals?
Post by: SpriggsySpriggs on April 24, 2021, 03:30:58 pm
You're welcome!