You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When using command line debugger like gdb, there is a common case that I need to set breakpoint for some specific line. The syntax is: b myfile.cpp:123. But currently I can only copy the filename without line no.
Describe the solution you'd like
Produce a new command like fileutils.copyFileNameAndLine which can copy current filename with lineno like myfile.cpp:123.
Describe alternatives you've considered
It may be more flexible that it can also produce some template ability like fileutils.copyTemplate which can consume a template like b ${fileName}:${lineno} and replace the ${fileName} and ${lineno} with actual value.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When using command line debugger like gdb, there is a common case that I need to set breakpoint for some specific line. The syntax is:
b myfile.cpp:123
. But currently I can only copy the filename without line no.Describe the solution you'd like
Produce a new command like
fileutils.copyFileNameAndLine
which can copy current filename with lineno likemyfile.cpp:123
.Describe alternatives you've considered
It may be more flexible that it can also produce some template ability like
fileutils.copyTemplate
which can consume a template likeb ${fileName}:${lineno}
and replace the${fileName}
and${lineno}
with actual value.The text was updated successfully, but these errors were encountered: