Преглед изворни кода

Fixes copy remote url not including line range

main
Eric Amodio пре 5 година
родитељ
комит
1392fc2d65
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/commands/copyRemoteFileUrlToClipboard.ts

+ 1
- 1
src/commands/copyRemoteFileUrlToClipboard.ts Прегледај датотеку

@ -24,7 +24,7 @@ export class CopyRemoteFileUrlToClipboardCommand extends ActiveEditorCommand {
}
protected preExecute(context: CommandContext, args: CopyRemoteFileUrlToClipboardCommandArgs = { range: true }) {
if (context.type === 'uri' || context.type === 'scm-states') {
if (context.type === 'uris' || context.type === 'scm-states') {
args = { ...args, range: false };
}
else if (isCommandViewContextWithCommit(context)) {

Loading…
Откажи
Сачувај