Match :=: and :/=:.
https://github.com/vim/vim/pull/20109
(8 files)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.![]()
Q: Where will the condition exists("algol68_symbol_operators") get set
or when will it become defined, so that the highlighting gets activated?
________________________________________
Von: vim...@googlegroups.com <vim...@googlegroups.com> im Auftrag von dkearns <vim-dev...@256bit.org>
Gesendet: Freitag, 1. Mai 2026 17:28
An: vim/vim
Cc: Subscribed
Betreff: [vim/vim] runtime(algol68): Update syntax file, match symbolic identity relators (PR #20109)
Match :=: and :/=:.
________________________________
You can view, comment on, or merge this pull request online at:
https://github.com/vim/vim/pull/20109
Commit Summary
* 46fac9e<https://github.com/vim/vim/pull/20109/commits/46fac9ee6048c26e365e93e60ad70bdce65af4ec> runtime(algol68): Update syntax file, match symbolic identity relators
File Changes
(8 files<https://github.com/vim/vim/pull/20109/files>)
* M runtime/syntax/algol68.vim<https://github.com/vim/vim/pull/20109/files#diff-32e6cd4c61024033f8a0d77fc69e3518843f255c1a2d8b5e2e8b47e117cd78ca> (3)
* A runtime/syntax/testdir/dumps/algol68_operators_00.dump<https://github.com/vim/vim/pull/20109/files#diff-d27fed30f6ee781234986674ac6cacbaebdcd28809bf39f767154fa1d25bd50d> (20)
* A runtime/syntax/testdir/dumps/algol68_operators_01.dump<https://github.com/vim/vim/pull/20109/files#diff-966b57800933731a677538d64c8c2839c6b1cfd1fe2d78b508c943c8dda716d0> (20)
* A runtime/syntax/testdir/dumps/algol68_operators_02.dump<https://github.com/vim/vim/pull/20109/files#diff-87485ada35934860b170517d2242d27959ebf45738dcaf3ed5b771321ca3ad82> (20)
* A runtime/syntax/testdir/dumps/algol68_operators_03.dump<https://github.com/vim/vim/pull/20109/files#diff-206d66dad93a72411f1bb706841ccf9c7452e6e2ebd3b75ecb03ce2935549a46> (20)
* A runtime/syntax/testdir/dumps/algol68_operators_04.dump<https://github.com/vim/vim/pull/20109/files#diff-712fff73712e0aecf56de3cba5986e8e5d11e11f11a174f63b5190eea150eef2> (20)
* A runtime/syntax/testdir/dumps/algol68_operators_05.dump<https://github.com/vim/vim/pull/20109/files#diff-ab68aaab8775d44b65e6f27be112a3f17f9ea9c88b13198096426d008764fc33> (20)
* A runtime/syntax/testdir/input/algol68_operators.a68<https://github.com/vim/vim/pull/20109/files#diff-079d1efda6d1267ee5d4d0a2c835427eda486fa2fabc3f375c63d0d5ec07403b> (100)
Patch Links:
* https://github.com/vim/vim/pull/20109.patch
* https://github.com/vim/vim/pull/20109.diff
—
Reply to this email directly, view it on GitHub<https://github.com/vim/vim/pull/20109>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ACY5DGCGJJX7J4A3AE7JWF34YS7B3AVCNFSM6AAAAACYNQ4AP6VHI2DSMVQWIX3LMV43ASLTON2WKOZUGM3DKMJWGU4TKNQ>.
Triage notifications on the go with GitHub Mobile for iOS<https://apps.apple.com/app/apple-store/id1477376905> or Android<https://play.google.com/store/apps/details>.
You are receiving this because you are subscribed to this thread.Message ID: <vim/vim/pull/20...@github.com>
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+u...@googlegroups.com<mailto:vim_dev+u...@googlegroups.com>.
To view this discussion visit https://groups.google.com/d/msgid/vim_dev/vim/vim/pull/20109%40github.com<https://groups.google.com/d/msgid/vim_dev/vim/vim/pull/20109%40github.com?utm_medium=email&utm_source=footer>.
thanks
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.![]()
I noticed that below mentioned if-condition was already present in
Nevilles' original version. I don't see a point in highlighting textual
operators but not highlight the symbolic variants. - Or what do you
think?
(There may be a point concerning all the Unicode variants we saw in
that version - these specific variants are unsupported by the Genie -
so they could be conditionally activated [in future] if/where possible.
But unless there's actual support from some compiler/interpreter I'd
remove the Unicode versions. - And then the conditional appears to
be unnecessary.)
Could we just remove the if-condition for the standard operators to
obtain them highlighted in Algol 68 source code? - Please let me
know what you think.
Thanks!
Regards,
Janis
________________________________________
Von: vim...@googlegroups.com <vim...@googlegroups.com> im Auftrag von Janis Papanagnou <janis_pa...@hotmail.com>
Gesendet: Freitag, 1. Mai 2026 18:01
An: vim...@googlegroups.com
Betreff: AW: [vim/vim] runtime(algol68): Update syntax file, match symbolic identity relators (PR #20109)
https://github.com/vim/vim/pull/20109
Commit Summary
File Changes
Patch Links:
To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/vim_dev/DU0PR02MB10422C3A13EDBE6A6D7536BC7F3322%40DU0PR02MB10422.eurprd02.prod.outlook.com.
Hi Doug,
I noticed that below mentioned if-condition was already present in
Nevilles' original version. I don't see a point in highlighting textual
operators but not highlight the symbolic variants. - Or what do you
think?
Could we just remove the if-condition for the standard operators to
obtain them highlighted in Algol 68 source code? - Please let me
know what you think.
While I'm not specifically liking "lots of highlighting" I think it's good
to have it consistent with the named standard operators. The defined
colors (for black and white backgrounds, respectively) also appears to
be not too "invasive". So I'd suggest we remove the option altogether
and have the operator-symbol highlighting *on*, defined as standard.
Would you be so kind to make this change? - Thanks!
Concerning:
"There's about a dozen syntax files offering a similar configuration option."
If you mean that it's *common* to allow a (interactive or by configuration)
explicit setting of highlighting behavior of this specific element then we
could _disable_ it by a conditional, but frankly, I don't see a point allowing
to configure every detail separately.
Regards,
Janis
PS: An interesting question is whether it's possible to highlight user-defined
operators and procedures. ;-)
________________________________________
Von: vim...@googlegroups.com <vim...@googlegroups.com> im Auftrag von Doug Kearns <dougk...@gmail.com>
Gesendet: Sonntag, 3. Mai 2026 18:23
An: vim...@googlegroups.com
Betreff: Re: [vim/vim] runtime(algol68): Update syntax file, match symbolic identity relators (PR #20109)
Janis,
Traditionally, symbolic operators have not been highlighted (e.g., the C syntax file). Some users like lots of highlighting, some don't, and some are very vocal about it either way. As a result there's not much consistency across the runtime files.
We could leave it as is, use a default value of true to highlight them, or remove the option altogether. There's about a dozen syntax files offering a similar configuration option.
I think this is a maintainer's decision. :)
Regards,
Doug
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+u...@googlegroups.com<mailto:vim_dev+u...@googlegroups.com>.
To view this discussion visit https://groups.google.com/d/msgid/vim_dev/CAJ1uvoB_pqbQp1Zu65QU84%3DOqcUc-fD-T-OUKk10QU-qrKu7gQ%40mail.gmail.com<https://groups.google.com/d/msgid/vim_dev/CAJ1uvoB_pqbQp1Zu65QU84%3DOqcUc-fD-T-OUKk10QU-qrKu7gQ%40mail.gmail.com?utm_medium=email&utm_source=footer>.
Thanks for the information, Doug, it's quite useful for the "maintainer's
decision". :-)
While I'm not specifically liking "lots of highlighting" I think it's good
to have it consistent with the named standard operators. The defined
colors (for black and white backgrounds, respectively) also appears to
be not too "invasive". So I'd suggest we remove the option altogether
and have the operator-symbol highlighting *on*, defined as standard.
Would you be so kind to make this change? - Thanks!
Concerning:
"There's about a dozen syntax files offering a similar configuration option."
If you mean that it's *common* to allow a (interactive or by configuration)
explicit setting of highlighting behavior of this specific element then we
could _disable_ it by a conditional, but frankly, I don't see a point allowing
to configure every detail separately.
Regards,
Janis
PS: An interesting question is whether it's possible to highlight user-defined
operators and procedures. ;-)
Regards,
Janis
________________________________________
Von: vim...@googlegroups.com <vim...@googlegroups.com> im Auftrag von Doug Kearns <dougk...@gmail.com>
Gesendet: Mittwoch, 6. Mai 2026 15:49
An: vim...@googlegroups.com
Betreff: Re: [vim/vim] runtime(algol68): Update syntax file, match symbolic identity relators (PR #20109)
Janis,
Regards,
Janis
Regards,
Doug
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+u...@googlegroups.com<mailto:vim_dev+u...@googlegroups.com>.
To view this discussion visit https://groups.google.com/d/msgid/vim_dev/CAJ1uvoDOFiV2PAch4G_1QyhWUacHt6vKnGE8J896Uw14Vh5RyA%40mail.gmail.com<https://groups.google.com/d/msgid/vim_dev/CAJ1uvoDOFiV2PAch4G_1QyhWUacHt6vKnGE8J896Uw14Vh5RyA%40mail.gmail.com?utm_medium=email&utm_source=footer>.