Select text via syntax highlighting
-
@dfdeboer said in Select text via syntax highlighting:
Can I now press a hot-key or right-click or something to select that entire URL?
No.
Or must I drag the mouse over the URL to select it?
Yes.
Perhaps something could be done with scripting to ease this situation.
URLs are done with indicator #8.
Maybe a script with execution tied to a keycombo could be run when the URL is pointed at. -
Thanks Alan! I thought it might be as you describe, but OTH if I was missing something it should would have been nice to figure it out.
-
As long as URLs are quoted strings, there is already a Pythonscript available and a macro solution as well. Take a look at
Have fun!
-
@astrosofista said in Select text via syntax highlighting:
As long as URLs are quoted strings, there is already a Pythonscript available and a macro solution as well
Yea, makes sense.
For the current thread I was thinking more of a hover-based solution.
But clicking somewhere inside the text and then running the script/macro is pretty reasonable. -
Thanks astrosofista. I’ll probably try setting that up some day soon. (Must keep nose to grindstone and not get distracted by fun toys. . .)
-
Hi @dfdeboer
You’re welcome. Glad to be of help.
-
This post is deleted! -
I am using jN plugin for such task.
https://github.com/sieukrem/jn-npp-plugin
The “href” selection functionality is in the file:
https://github.com/trdm/jn-npp-scripts/blob/master/includes/IntellHtml.js -
@Дмитрий-Трошин said in Select text via syntax highlighting:
I am using jN plugin for such task.
https://github.com/sieukrem/jn-npp-plugin
The “href” selection functionality is in the file:
https://github.com/trdm/jn-npp-scripts/blob/master/includes/IntellHtml.jsfunction htmlMakeSelections(psAnaliser) { var rv = ''; if(0) { psAnaliser = new CHtmlTagAnalizer; } if(psAnaliser) { //debugger; var vPosStart = -1, vPosEnd = -1, vAnchor = 0, vPosOffset = -1; var vTag = null, vLP = psAnaliser.getLastPlasement(); if(vLP && htmlNeedSelections(vLP)) { var vTag = vLP.tag; var vNames = ['img'] if( vTag && vTag.name == 'img' && vLP.atribName == "src") { // select 'img' or "src var vAtrName = vTag.atribByPos(vLP.column); if (vAtrName != '') { vPosStart = vTag.atribPosStartVal(vAtrName)+1; vPosEnd = vTag.atribPosEnd(vAtrName); /* bytePos/Pos и column связаны, */ vPosOffset = view.pos - view.column; view.anchor = vPosStart + vPosOffset; view.pos = vPosEnd + vPosOffset; } } } } return rv; }
-
@Дмитрий-Трошин said in Select text via syntax highlighting:
I am using jN plugin for such task.
https://github.com/sieukrem/jn-npp-plugin
The “href” selection functionality is in the file:
https://github.com/trdm/jn-npp-scripts/blob/master/includes/IntellHtml.jsHow it works.
![alt text]()