Search found 1007 matches

by Rickard Johansson
23 Jan 2024 23:00
Forum: Scripts
Topic: TMemIniFile
Replies: 3
Views: 694

Re: TMemIniFile

It's fixed in the next release (v16.11). I tested with the code below (using v16.11) and it works fine. // JScript TMemIniFile tiIni = TMemIniFile.Create ("TabToColumn_Settings.ini"); var nTabColumn = 10; tiIni.WriteInteger("Settings", "TabToColumn", nTabColumn); tiIni....
by Rickard Johansson
23 Jan 2024 21:41
Forum: Bugs
Topic: CHM Help file
Replies: 3
Views: 173

Re: CHM Help file

I've tried on Windows 10 x64 and it seems to work fine. Just make sure the file is placed in a non-write protected folder. Don't put it inside the program files folder.
by Rickard Johansson
23 Jan 2024 21:24
Forum: Scripts
Topic: Error Reporting
Replies: 2
Views: 153

Re: Error Reporting

InputBox() is a method inside the MainApp object, so it should be MainApp.InputBox("Hello", "world!"); The text cursor is positioned at the error. So the line and column will be the same as the current cursor position... // JScript var nTabColumn = StrToInt (MainApp.InputBox(&quo...
by Rickard Johansson
23 Jan 2024 18:31
Forum: General discussion
Topic: Resolved: odd screen-shifting issue
Replies: 5
Views: 395

Re: odd screen-shifting issue

What do you mean by screen shifting right? Is the entire desktop, with all applications and taskbar, shifted right?
by Rickard Johansson
23 Jan 2024 16:09
Forum: Features
Topic: DONE: Change color on hint popups
Replies: 2
Views: 1765

Re: Change color on hint popups

Added in next release (v16.11). Thanks!

Skärmbild 2024-01-23 160734.png
Skärmbild 2024-01-23 160734.png (21 KiB) Viewed 238 times
by Rickard Johansson
23 Jan 2024 14:56
Forum: Bugs
Topic: FIXED: NextWordNoSymbolsAction - tweak requested
Replies: 4
Views: 297

Re: NextWordNoSymbolsAction - tweak requested

Use the new options in v16.11 instead (when released). Note that you have to switch back to the original keyboard actions for the options to take effect.
by Rickard Johansson
23 Jan 2024 14:53
Forum: Bugs
Topic: FIXED: [v16.10] CTRL-RIGHT bug
Replies: 10
Views: 574

Re: [v16.10] CTRL-RIGHT bug

Fixed in next version (v16.11). Also added new options to change the behavior.
by Rickard Johansson
23 Jan 2024 14:43
Forum: Features
Topic: DONE: Move to next/previous word (CTRL+Right/Left)
Replies: 2
Views: 257

Re: Move to next/previous word (CTRL+Right/Left)

Already done in next version (v16.11). Thanks!
by Rickard Johansson
04 Jan 2024 15:22
Forum: Bugs
Topic: Incorrect icon for Terminal window
Replies: 2
Views: 2322

Re: Incorrect icon for Terminal window

Are you using your own modified image list? If so - make sure it contains the same number of images as the original image list.
by Rickard Johansson
04 Jan 2024 14:58
Forum: Next release
Topic: Version 16.10
Replies: 0
Views: 2116

Version 16.10

----------------------------------------------------------- Version 16.10 (Jan 4, 2024) ----------------------------------------------------------- Font Weight (Boldness) The editor can now handle different font weights for different syntax elements like comments, strings, numbers... E.g. you could ...
by Rickard Johansson
24 Dec 2023 10:53
Forum: News
Topic: Marry Christmas 2023
Replies: 1
Views: 2692

Marry Christmas 2023

https://scontent-cph2-1.xx.fbcdn.net/v/t39.30808-6/412610860_690340893207701_7859429457164886772_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=3635dc&_nc_ohc=PJhw-TU73SgAX_AWo3Q&_nc_oc=AQkLlCGN8-8twwmlElfaejUamIhfP3bE-EDbbMHLO7PFoQxtWCTDvxD4jSV9JklipS8QVxL17hkgS0omXnCcBY0U&_nc_ht=scontent-c...
by Rickard Johansson
18 Dec 2023 13:59
Forum: Development - Beta Versions
Topic: Version 16.10 beta
Replies: 1
Views: 2799

Re: Version 16.10 beta

Version 16.10 beta 2
Made some minor changes and fixed issues in beta 1.
by Rickard Johansson
17 Dec 2023 20:50
Forum: Bug reports
Topic: FIXED? [16.10b1] Font weights
Replies: 2
Views: 3235

Re: [16.10b1] Font weights

All issues fixed, except the b checkbox. I still think it's intuitive and it too indicates a font style change.

2023-12-17_204815.png
2023-12-17_204815.png (5.28 KiB) Viewed 3215 times

Selecting "Normal" will just uncheck the checkbox...
by Rickard Johansson
17 Dec 2023 19:36
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4277

Re: FIXED? minor bug in cursor movement

You can assign Shift+Ctrl+Left to SelectPreviousWordNoSymbolsAction instead of SelectPreviousWordAction, if you want the same behavior when selecting words.
by Rickard Johansson
17 Dec 2023 14:20
Forum: Bugs
Topic: FIXED: minor bug in cursor movement
Replies: 15
Views: 4277

Re: FIXED? minor bug in cursor movement

To me it seems most editors doesn't work that way. I tried your example in a few editors. NotePad++ : 13 steps VSCode : 11 steps Sublime : 10 steps (worked exactly like RJ TextEd) But I've added new keyboard actions to the final release. PreviousWordNoSymbolsAction NextWordNoSymbolsAction SelectPrev...