file-line icon indicating copy to clipboard operation
file-line copied to clipboard

Handle file#L123 printed by some perl's Carp 'croak' + Add ability to define custom regexps

Open junkblocker opened this issue 4 years ago • 1 comments

junkblocker avatar Nov 14 '20 16:11 junkblocker

Unfortunately using the file#L123 syntax from within Vim will result in the following error:

E194: No alternate file name to substitute for '#'

I haven't found a solution yet, but the syntax works from the command line:

$ vim file#L123

For Zsh users the # needs to be escaped to bypass globing:

$ vim file#L123
zsh: no matches found: file#L123
$ vim file\#L123 : works

RobertAudi avatar Dec 21 '20 10:12 RobertAudi