Changelog:
- Added: French.ini (thanks to Mesa)
- Added: Comments (;-) are grayed out by default.
- Added: Settings: Procedure_Color, Procedure_BackColor, Comment_Color, Comment_BackColor
- Optimized: It no longer stutters when moving the PB window.
- Bugfix: Runtime procedure was not recognized.
- Bugfix: Procedure name change was not always recognized.
I added your language file. Thank you.Mesa wrote: Wed Apr 19, 2023 9:41 am Very useful for me, if you want to add a french version, so this is the French.ini file:
Done, you can change this color in the Settings.ini.AZJIO wrote: Sun Aug 21, 2022 6:17 pm Is it possible to set the label color automatically? For example functions in one color and comments (prefix >) in another color. The current function is the third color.
The color works. It's purple for me.AZJIO wrote: Sun Aug 21, 2022 6:17 pm The color doesn't workCode: Select all
HighlightProcedure_BackColor = 16744576 HighlightProcedure_Color = 16744576
If you want to get the color value, please use RGB() in PB.
The color channels in PureBasic are different than anywhere else.
Red color as decimal value in PB: 255
Red color as decimal value in Web: 16711680
Blue color as decimal value in PB: 16711680
Blue color as decimal value in Web: 255
DoneAZJIO wrote: Sun Aug 21, 2022 6:17 pm When moving the window, braking is noticeable. Is it possible to disable the processing of functions when moving the window?