Search found 525 matches

by pjj
23 Jun 2023 16:34
Forum: Bugs
Topic: FIXED: Tooltips in Code Explorer
Replies: 2
Views: 992

Re: Tooltips in Code Explorer

The icons show different structure elements. What each structure element is - depends on the coding language. It could be a method, function, section, union, interface, selector... https://www.rj-texted.se/Forum/viewtopic.php?p=18884#p18884 Since the highlighter is known (of course) and symbols are...
by pjj
20 Jun 2023 08:40
Forum: General discussion
Topic: Open PDF files on RJ TextEd?
Replies: 2
Views: 1228

Re: Open PDF files on RJ TextEd?

Since you have put your posts into "General discussion" board, let's discuss 8) So, why would anyone want to read their PDF files inside their text editor? Why do you think it would be beneficial for the user and more convenient, compared to opening them in a specialized reader? I could im...
by pjj
20 Jun 2023 08:28
Forum: Syntax files
Topic: DONE: Could syntax highlighting for htmx and _hyperscript be implemented?
Replies: 3
Views: 1638

Re: Could syntax highlighting for htmx and _hyperscript be implemented?

Do you think it's worth trying? According to htmx author's own words, htmx is over. ...Okay, okay, it will be back in the afternoon, as always is. (For those of you who don't follow @htmx_org on Twitter , htmx is regularly "over", only to be "back" in a couple of hours/days later...
by pjj
13 Jun 2023 16:38
Forum: Bug reports
Topic: FIXED: [15.90b3] Code Explorer glitch with PHP class
Replies: 1
Views: 3383

FIXED: [15.90b3] Code Explorer glitch with PHP class

If a file contains PHP class, e.g. <?php class Vegetable { public $edible; public $color; public function __construct($edible, $color = "green") { $this->edible = $edible; $this->color = $color; } } this class "escapes" Module set: code-explorer-php-class.png
by pjj
13 Jun 2023 16:32
Forum: Bug reports
Topic: FIXED? [15.90b2&3] Editor hangs on return in PHP file
Replies: 3
Views: 995

Re: [15.90b2&3] Editor hangs on return in PHP file

I think I nailed it: you need to have PHP language server running.
by pjj
13 Jun 2023 15:15
Forum: Bug reports
Topic: FIXED? [15.90b2&3] Editor hangs on return in PHP file
Replies: 3
Views: 995

FIXED? [15.90b2&3] Editor hangs on return in PHP file

When I place the caret just after opening PHP tag sitting on the first line of a file and hit the return key, the editor immediately hangs. Sometimes when I extend selection to the first line with opening PHP tag, editor hangs as well. This happened with beta2 and is happening with beta 3, too.
by pjj
10 Jun 2023 06:40
Forum: Questions
Topic: Change colour or transparency of hints?
Replies: 2
Views: 1490

Re: Change colour or transparency of hints?

Its header uses the same color as document map background, but changing it didn't alter background of the tip's header. Yes, it would be great to have this possibility, and also to change LSP tips color as well.
by pjj
07 Jun 2023 08:39
Forum: Bugs
Topic: FIXED: Cruft in LS tip with function details
Replies: 3
Views: 1245

FIXED: Cruft in LS tip with function details

I have a language server running and it's doing great. I have my library of custom functions in one file, too. If this file is not open, LS doesn't scan it, so it doesn't know my functions, so understandably it displays "undefined function" message: undefined function.png When I open my li...
by pjj
07 Jun 2023 07:08
Forum: Questions
Topic: The word count function does not display all duplicate matches, how to display them?
Replies: 3
Views: 1095

Re: The word count function does not display all duplicate matches, how to display them?

Not exactly a solution to your problem, but you can check "List all items found" in "Output options" and click on [Find All] -- Search Results panel will open up with all results (even duplicate) listed; you can then RMC > Export > Export as text to clipboard; there will be some ...
by pjj
06 Jun 2023 12:18
Forum: Bug reports
Topic: FIXED: [15.90b2] Bug in setting right margin with a mouse
Replies: 1
Views: 1145

FIXED: [15.90b2] Bug in setting right margin with a mouse

I'm not sure if this is beta-related bug, but I never saw it before. (I just sent you an automated crash report after fiddling with right margin.) So, I have right margin set to 100. If I have word-wrap on and I change it (usually it happens by accident) with a mouse to, say 20, text reflows just fi...
by pjj
05 Jun 2023 08:27
Forum: Bugs
Topic: FIXED: Small glitch in Options modal window
Replies: 1
Views: 997

FIXED: Small glitch in Options modal window

Some controls are blocked out by other ones:
options.png
options.png (34.29 KiB) Viewed 997 times
by pjj
05 Jun 2023 08:24
Forum: Features
Topic: Sidebar Toggle
Replies: 5
Views: 1307

Re: Sidebar Toggle

FWIW I have a sidebar with four panels and clicking on the pin icon switches them on/off together, so there's no need to close nor to restore them one by one (same goes for my bottombar, btw). Plus then having to re-adjust the size of the panels. Re-adjust the size? My panels are maxed in height, so...
by pjj
01 Jun 2023 09:01
Forum: Bug reports
Topic: FIXED? [15.90b2] Code Explorer "Tags" tab and XML files
Replies: 1
Views: 1043

FIXED? [15.90b2] Code Explorer "Tags" tab and XML files

This is my XML file for testing: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <!DOCTYPE teST [ <!ENTITY nbsp "&#160;"> ]> <test> <js> <jquery active="true" version="3.6.0"/> <htmx active="false" boost="true&quo...
by pjj
01 Jun 2023 08:00
Forum: Bug reports
Topic: FIXED: [15.90b2] Code Explorer/Module missing function
Replies: 1
Views: 993

FIXED: [15.90b2] Code Explorer/Module missing function

So I have this JavaScript file: $.fn.dataTable.ext.type.detect.unshift(function (d) { return d === 'one' || d === 'two' || d === 'three' ? 'status-grade' : null; }); // ---- datatables $(document).ready(function() { /* sort on status */ $.fn.dataTable.ext.type.order['status-grade-pre'] = function (d...