Allow to paste a file path with line number to go to line in file #123810
Labels
feature-request
Request for new features or functionality
info-needed
Issue requires more information from poster
quick-open
Quick-open issues (search, commands)
Milestone
I often find myself needing to point another developer to a specific line in a file. Usually, I would approach this by sending them a relative file path along with the line number. For example:
src/utils.js
30
Equipped with this information they could:
Go to file
command (usually bound toctrl+e
)Enter
Go to Line/Column
command (in my case it is bound toctrl+g
)Instead it would be convenient if the
Go to file
command input could accept a path with a symbol simplifying the above steps. Alternatively, to avoid overloadingGo to file
a new command my be introduced, possibly namedGo to line in file
.The syntax for the enhanced file path could be
filePath:lineNumber
. In the context of the example above:src/utils.js:30
.The text was updated successfully, but these errors were encountered: