-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add way to "Go to offset", ideally accessible from the "Go to" command #196067
Comments
This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! |
I am the developer of an extension that attempts to satisfy this need https://marketplace.visualstudio.com/items?itemName=davidfreer.go-to-character-position I have some concerns about this being an extension and I would submit this should circumvent the normal 'voting' phase as this is a core function of text editing software. But that's just my 2 cents. I'll briefly explain some issues I've ran into as a developer of an extension targeted towards this purpose, more so the limitations of the vscode api afforded to extensions
In most cases those issues solicit negative reviews from users due to the educational gap of what I can and can't do as an extension developer. |
🙂 This feature request received a sufficient number of community upvotes and we moved it to our backlog. To learn more about how we handle feature requests, please see our documentation. Happy Coding! |
It sometimes useful to be able to go a certain offset of a file (e.g. when a tool reports "error xxx at position 599").
This has been implemented for vscode-hexeditor and it would be nice to have this mainstream and built-in (rather than having to depend on some extensions ... that might be buggy).
A nice way to access it would be from Go-to (Ctrl + G) as it is the case in Notepad++ for example, maybe like:
:n
would go to line n:n:c
would go to character c of line n::c
would go to the character c of the whole file (i.e. offset)The first two being already implemented, that would be the logical continuation
The text was updated successfully, but these errors were encountered: