Search found 564 matches

by pjj
18 Jul 2025 17:19
Forum: Bugs
Topic: solved: html matching in cpp file
Replies: 4
Views: 78

Re: minor issue: html matching in cpp file

Maybe I should remove those shortcuts and let users set shortcuts themselves :? I believe in the value of sane defaults; therefore I believe ^B should act as it currently does, and F1 should still invoke help :wink: SANE defaults The default behaviour of functions, APIs, applications, etc is often ...
by pjj
18 Jul 2025 09:01
Forum: Bugs
Topic: solved: html matching in cpp file
Replies: 4
Views: 78

Re: minor issue: html matching in cpp file

As I understand this, there are no "shortcuts per highlighter" and one shortcut acts the same irrespective of said highlighter. If I press ^B in .txt or .csv or .css or any other file, I always run the same InsertStrongEmphasisAction which inserts (in my case) <strong>%sel%</strong>. Would...
by pjj
17 Jul 2025 11:32
Forum: Bugs
Topic: FIXED: [16.42] BUG: Lines disappearing
Replies: 5
Views: 92

Re: [16.42] BUG: Lines disappearing

FWIW I just e-mailed Rickard in case he hasn't seen this thread yet, suggesting taking off download links for now.

I also found these: ver. 16.40 and ver. 16.40
by pjj
17 Jul 2025 10:49
Forum: Bugs
Topic: FIXED: [16.42] BUG: Lines disappearing
Replies: 5
Views: 92

Re: [16.42] BUG: Lines disappearing

So it's not only for hardlinked files, as I supposed yesterday?? Because I copied my fateful file to another disk, and then was able to edit and save it correctly. On a side note, I tried to downgrade, but 1) I couldn't find links to previous versions, and when I finally found one (and quite old one...
by pjj
11 Jul 2025 11:19
Forum: Questions
Topic: Search Highlight
Replies: 2
Views: 213

Re: Search Highlight

RMC > Highlight > Unhighlight all

I think they *should* remain highlighted if you set "Highlight all item found".
by pjj
10 Jul 2025 11:02
Forum: Bugs
Topic: FIXED: AutoCompelete's doubled opening bracket
Replies: 1
Views: 92

FIXED: AutoCompelete's doubled opening bracket

When I write

Code: Select all

block
and press ^Space, I get "blockquote" as autocoplete list entry; I press Enter and the result is

Code: Select all

<blockquote></blockquote>
Sweet. But when I start with an angle bracket, i.e.

Code: Select all

<block
and use autocomplete, I get

Code: Select all

<<blockquote></blockquote>
by pjj
10 Jul 2025 09:44
Forum: Bugs
Topic: FIXED: Project's file open via search not marked as active in project's tree
Replies: 1
Views: 200

FIXED: Project's file open via search not marked as active in project's tree

Some time ago I noticed that some of my files were not being marked as "active" in the project's tree in the Project Manager panel. Some of them were -- when I clicked on document's tab in the main editor screen, at once it was highlighted in the tree. Some weren't, and I couldn't pinpoint...
by pjj
07 Jul 2025 15:39
Forum: Bugs
Topic: FIXED: ClipAction shortcuts stopped working
Replies: 3
Views: 211

FIXED: ClipAction shortcuts stopped working

I have some clips with attached keyboard shortcuts and these shortcuts stopped working. When I double-click on the clip, it works. When I try to associate clip's shortcut to another action in Environment > Customize keyboard, I get a warning that this shortcut has been assigned to Text Clips. Yet, t...
by pjj
15 Jun 2025 10:41
Forum: Features
Topic: DONE? Tweak how fuzzy search results are presented
Replies: 3
Views: 5800

Re: DONE? Tweak how fuzzy search results are presented

I have a feeling it was amended then, but now it's the same thing again:
project-file-search-fuzzy.png
project-file-search-fuzzy.png (44.24 KiB) Viewed 501 times
I'm looking for back and instead of getting backend* hits first, I get non-relevant ones--and when they are relevant, scattered visual cues make them hard to recognize at first.
by pjj
15 Jun 2025 10:34
Forum: Bugs
Topic: Solved: color quirks in Makefile
Replies: 4
Views: 555

Re: Solved: color quirks in Makefile

Image
by pjj
14 Jun 2025 10:14
Forum: Questions
Topic: How To for a new user
Replies: 2
Views: 570

Re: How To for a new user

You can't, because text files (with .txt extensions) are treated differently and it is hardcoded. I don't see the need to switch these lines on, either, but maybe there is? Anyway, file a feature request and we'll see :)

Re: F1; no idea, probably it's hardcoded and for a reason.
by pjj
14 Jun 2025 10:03
Forum: Bugs
Topic: Solved: color quirks in Makefile
Replies: 4
Views: 555

Re: color quirks in Makefile

I believe it is simply due to keywords present/missing in the makefile.syx: CFLAGS is there, but not the other ones you enumerated. Perhaps you need to fork this file and add the ones that are necessary for you (and send your copy to Rickard :wink:).
by pjj
05 Jun 2025 08:14
Forum: Questions
Topic: cannot reproduce: how do I fix auto-read-on-change ??
Replies: 3
Views: 571

Re: how do I fix auto-read-on-change ??

There is no "never" button on the modal that appears after external file change... Are you sure it relates to makefiles only and you have Options > File > Miscellaneous > Warn if document has been changed by external program checked?
by pjj
20 May 2025 17:40
Forum: Next release
Topic: Version 16.40
Replies: 4
Views: 5102

Re: Version 16.40

Image

Image
by pjj
30 Apr 2025 21:19
Forum: Questions
Topic: Question about regular expressions
Replies: 4
Views: 2073

Re: Question about regular expressions

Hey, I'm super glad it worked for you :-D You may want to have a look at https://regexr.com/ or https://regex101.com/ to test your regexes -- the are more regex testers on the Net, but these two come with broad explanations and suggestions, like e.g. to use ([A-Z_]*) instead of (.*) to match only CA...