Feature Request: Marking individual text on specific lines only #384
Replies: 3 comments
-
|
As far as I know, this is currently not possible. I would like to see this feature implemented as well. |
Beta Was this translation helpful? Give feedback.
-
|
Hello! I'm currently working on a slightly different feature that allows defining annotations inside the code. You can find the package and syntax here: This will be used by EC's core package and made available to all plugins, including text markers. Do you think using this once it's ready might be an alternative to your request? What is already possible right now is using the regex-based text markers syntax to only match the strings if they appear together with other unique strings on the line you want to target. Examples:
I realize that this might not be always possible and requires writing tedious regex syntax, but I wanted to mention it as workaround that might solve your use case until I've finished adding annotation comments to EC. :) |
Beta Was this translation helpful? Give feedback.
-
|
Hello! We are moving feature requests and support questions to discussions and using issues only for bugs to help better track those going forward. See you in the Discussions tab! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This code is rendered as shown on the image:
Issue: Marking is for all the lines but I want to mark the 5th line only.
Something like these syntax would help:
sql "{1}mark me"- will highlight the word mark me on line 1 only.sql del="{5-10}this is red"- will highlight in red the word this is red on lines 5-10 only.Beta Was this translation helpful? Give feedback.
All reactions