Modifying CSON file, not working as expected #296
Unanswered
kbmaniac
asked this question in
Pulsar Support
Replies: 1 comment
-
OK so I have been hammering on this for hours .... just gave up and as I posted this I realised my error, it should have been
Apologies for wasting everybody's time :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So settling into Pulsar and loving the clean interface, just stuck on one issue, I need to adjust the language CSON file to accept (( as well as ( as a block comment. The existing block comment code is ...
{
'begin': '(?<=^|\s)(\(\)(?=\s)'
'comment': 'multiline comments for Forth'
'end': '(?<=^|\s)(\\))(?=\s)'
'name': 'comment.block.forth'
}
and I have added another block ...
{
'begin': '(?<=^|\s)(\(\(\)(?=\s)'
'comment': 'multiline comments for Forth using (( ))'
'end': '(?<=^|\s)(\\)\))(?=\s)'
'name': 'comment.block.forth'
}
which is not working :(, any CSON experts out there ? or is there a diagnostic window in Pulsar to show what its doing ?
Many thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions