Search found 560 matches

by pjj
15 Oct 2024 15:46
Forum: Syntax files
Topic: Help defining a custom syntax file
Replies: 10
Views: 10590

Re: Help defining a custom syntax file

Can you post your .syx file here?
by pjj
15 Oct 2024 12:13
Forum: Bugs
Topic: FIXED: CSS autocomplete
Replies: 3
Views: 3332

Re: CSS autocomplete

Same with a tab, i.e. property, colon and then tab.
by pjj
14 Oct 2024 21:21
Forum: Syntax files
Topic: Help defining a custom syntax file
Replies: 10
Views: 10590

Re: Help defining a custom syntax file

You need to escape dots, i.e. write \d\d\.\d\d\.\d\d\d\d -- or \d{2}\.\d{2}\.\d{4} (which is more readable, methinks). I did some tests and I can see there is a bug in the code, though: the background for a (new) keyword isn't used if the keyword is on the last line. It works, if I add a newline aft...
by pjj
07 Oct 2024 19:33
Forum: Questions
Topic: Create New File Home Screen Tree
Replies: 4
Views: 2875

Re: Create New File Home Screen Tree

Yeah, these are special types and ostensibly can't be switched off (even if you deactivate INI highlighter), probably because these extensions are hardcoded somewhere.
by pjj
07 Oct 2024 18:06
Forum: Questions
Topic: Create New File Home Screen Tree
Replies: 4
Views: 2875

Re: Create New File Home Screen Tree

I can see only active highlighters are displayed there, so you need to go to Environment > Add-ons > Highlighters and deactivate those you don't need.
by pjj
06 Oct 2024 07:23
Forum: Next release
Topic: Version 16.31
Replies: 2
Views: 34172

Re: Version 16.31

Visual changes Made visual changes to all dialog windows throughout the program. Some minor and some more extensive. Thank you very much, I greatly appreciate these changes! https://pyxis.nymag.com/v1/imgs/942/0cc/33a2536b4ee3a67fd3ee699b1e64332e8c-27-sparks-steakhouse-steak.rhorizontal.w700.jpg !
by pjj
04 Oct 2024 15:21
Forum: Bugs
Topic: FIXED: Code explorer bug
Replies: 4
Views: 3390

Re: Code explorer bug

From what I can see, RJ TE doesn't like for loop without curly brackets.
by pjj
02 Oct 2024 10:21
Forum: Bugs
Topic: FIXED: No semicolon after tab in CSS and then some more things
Replies: 10
Views: 6454

Re: No semicolon after tab in CSS and then some more things

Strangest thing, but it does not work for me at all (<style>, style="", CSS) in the released version (16.30). After a tab only spaces are inserted, same with autocomplete. On my other computer it works alright, though :? Any ideas? Edit: some time ago I had switched off tab as trigger key ...
by pjj
01 Oct 2024 07:56
Forum: General discussion
Topic: Menu Fonts
Replies: 1
Views: 6929

Re: Menu Fonts

Yes, it's here: Environment > Options... > Style and fonts > Menu font
by pjj
05 Sep 2024 10:19
Forum: Bugs
Topic: TAB key bug?
Replies: 3
Views: 3631

Re: TAB key bug?

Quick way of expanding snippets into HTML code, cf. https://docs.emmet.io/ (see the demo there for a quick introduction).
by pjj
05 Sep 2024 09:08
Forum: Bugs
Topic: TAB key bug?
Replies: 3
Views: 3631

Re: TAB key bug?

This is Emmet in action, and you have tab defined as a trigger key (it is default setting, I guess). Go to Format > Abbreviations > Allow Trigger Keys and uncheck tab.
by pjj
02 Sep 2024 08:16
Forum: Questions
Topic: CURRENT LINE COLOR
Replies: 1
Views: 2775

Re: CURRENT LINE COLOR

Is there a way other than the "current line highlight color" to define the font color of the current line? I believe that this setting relates to the color of top and bottom borders of the current line highlight; this line is displayed using the current highlighter. In addition to definin...
by pjj
26 Aug 2024 09:22
Forum: Bugs
Topic: FIXED: No semicolon after tab in CSS and then some more things
Replies: 10
Views: 6454

Re: No semicolon after tab in CSS and then some more things

You're right, it takes care about CSS :shock: So now what seems to be the problem ("What seems to be a problem, Officer?" -- Ed Harris in A History of Violence ) is how I make my CSS LSP server work on CSS files. (I need to start it, and I can't.) OK, I'll do some tests. Btw. when I add th...
by pjj
25 Aug 2024 20:02
Forum: Bugs
Topic: FIXED: No semicolon after tab in CSS and then some more things
Replies: 10
Views: 6454

Re: No semicolon after tab in CSS and then some more things

Maybe my HTML server is pretending to be CSS one? lsp-1.png Please notice it's saying that the server is not running, but it is! When I start the server and restart the editor, the message is the same (i.e. it's not running). lsp-2.png Perhaps sometime later I'll remove all LSP servers and reinstall...
by pjj
25 Aug 2024 13:14
Forum: Bugs
Topic: FIXED: No semicolon after tab in CSS and then some more things
Replies: 10
Views: 6454

Re: No semicolon after tab in CSS and then some more things

Ha! I do, in fact, use CSS server. In another project, where I don't have any LSP registered, I get the same list for CSS. So for some reason CSS LSP server is not used for .css files (nor .scss), and when it is used (in <style> section), it displays its own hints, that are different than hints from...