I've looked at several threads here which all focus on line/character position, but nothing about cursor position within a document.
The only "jump to" available in Lister seems to be the % based one you get to by clicking the % in the toolbar in the upper right corner. I'd love to see the cursor position available in addition to the % through the document. (adding decimal percent value parsing instead of just integer would also be helpful

This is not about line position since that would require reading the whole file (from beginning at least) to count the \n or \r characters. I'm talking about the actual cursor's stream position, or carrot's selected range indexes within the stream.
I am currently working with a giant (467gb) XML file (the unpacked "planet" file from OpenStreetMap) and being able to get the stream position from Lister would be super helpful. I wrote a simple file reader/prosessor where I can specify the streamreader's start position, and it would be great if I could get this inf out of lister so I don't need to search for it using my own application.
Example: if I'm 17% through my file, the the cursor position would be something around ~79,463,300,000.
Thank you,