Search found 904 matches
- 02 Mar 2021 21:51
- Forum: Questions
- Topic: How do I use new debug functions?
- Replies: 2
- Views: 26
Re: How do I use new debug functions?
let str = "Hello, world!"; MainApp.OutputDebugString("My variable str =", str); let n = 10; MainApp.OutputDebugString("My variable n =", n); let list = TStringlist.Create; list.Add("Hello world!"); MainApp.OutputDebugObjectString("My string list contains:", list); I think the mainMenu is treated as...
- 02 Mar 2021 21:44
- Forum: Questions
- Topic: How do I call new Capitalize() function?
- Replies: 2
- Views: 26
Re: How do I call new Capitalize() function?
Replace the whole line with:
Code: Select all
Document.Capitalize();
- 02 Mar 2021 14:45
- Forum: Next release
- Topic: Version 14.73
- Replies: 0
- Views: 36
Version 14.73
----------------------------------------------------------- Version 14.73 (Mar 2, 2020) ----------------------------------------------------------- Script functions Added a few new functions to "Document" and "MainApp". * Document.Capitalize() Capitalize selection. Should work the same way as the me...
- 28 Feb 2021 21:53
- Forum: Features
- Topic: Better debug for scripts?
- Replies: 2
- Views: 24
Re: Better debug for scripts?
Added script function "MainApp.OutputDebugString(const text: string; value: Variant)" in next release.
"value" can be an integer, float, date, boolean or string. It's written to the message panel as text + ' ' + value.
Hope that helps a little
"value" can be an integer, float, date, boolean or string. It's written to the message panel as text + ' ' + value.
Hope that helps a little

- 28 Feb 2021 18:39
- Forum: Features
- Topic: Assign Ctrl + W to Word Wrap by default
- Replies: 3
- Views: 186
Re: Assign Ctrl + W to Word Wrap by default
I tested in a few text editors and all of them (NotePad++, Sublime ...) used CTRL+W for closing the active document tab. I think I just leave it and let the user set any shortcut they want...
- 28 Feb 2021 18:33
- Forum: Features
- Topic: Highlight fully qualified PHP function calls
- Replies: 2
- Views: 83
Re: Highlight fully qualified PHP function calls
Made some extensive changes to the PHP syntax file to use regular expressions for class and functions. It should handle qualified PHP function calls.
Please test it and let me know what you think.
Please test it and let me know what you think.
- 28 Feb 2021 18:05
- Forum: Bugs
- Topic: FIXED? Discrepancy between script and menu command output
- Replies: 4
- Views: 38
Re: FIXED? Discrepancy between script and menu command output
The script function "Document.Capitalize()" is the same as in the menus. There are many ways to capitalize and I might add some more to both the menus and the script engine at some point...
- 28 Feb 2021 18:00
- Forum: Features
- Topic: DONE? Tweak how fuzzy search results are presented
- Replies: 1
- Views: 34
Re: Tweak how fuzzy search results are presented
Made a small tweak in next release (v14.73). Thanks!
- 28 Feb 2021 15:51
- Forum: Bugs
- Topic: SOLVED? Wrong background colors with alpha?
- Replies: 5
- Views: 950
Re: SOLVED? Wrong background colors with alpha?
Only seems to be an issue with certain themes. It's fixed in the next version (v14.73). Thanks!
- 28 Feb 2021 15:15
- Forum: Bugs
- Topic: ??? Not displaying some lines again
- Replies: 2
- Views: 65
Re: Not displaying some lines again
If I remember correctly, you're using different background colors in different highlighters (white in HTML and light green in PHP?). Maybe that's why you experience these issues ? Anyway, I can't reproduce it.
If you ever find a way to reproduce the issue - please let me know.
If you ever find a way to reproduce the issue - please let me know.
- 28 Feb 2021 14:58
- Forum: Bugs
- Topic: FIXED? Discrepancy between script and menu command output
- Replies: 4
- Views: 38
Re: Discrepancy between script and menu command output
Added script function "Document.Capitalize()" in next release (v14.73). The function seems to be working correctly though. I've tested against different rules like: * Chicago Manual of Style capitalization rules. * NY Times style guidelines. You can always write your own Capitalize function to use i...
- 28 Feb 2021 14:10
- Forum: Bugs
- Topic: FIXED: v14.71: "current folder icon" broken?
- Replies: 7
- Views: 402
Re: FIXED: v14.71: "current folder icon" broken?
Fixed in next release (v14.73). Thanks!
- 20 Feb 2021 08:46
- Forum: Questions
- Topic: How to completely turn OFF wrapping of long lines
- Replies: 5
- Views: 116
Re: How to completely turn OFF wrapping of long lines
You can set the maximum line length in options (Options->Display->Max column width) to anything you want.
- 17 Feb 2021 21:39
- Forum: Next release
- Topic: Version 14.72
- Replies: 2
- Views: 101
Re: Version 14.72
Automatic update should work now. Thanks!
- 17 Feb 2021 14:53
- Forum: Next release
- Topic: Version 14.72
- Replies: 2
- Views: 101
Version 14.72
----------------------------------------------------------- Version 14.72 (Feb 17, 2020) ----------------------------------------------------------- Misc * Arabic was added to the list of available languages. * Cpp syntax file was updated. Fixed * SFTP issues when changing remote directory. * Lorem ...