Sfoglia il codice sorgente

Uses VSCode as core.editor for rebase

main
Nafiur Rahman Khadem 2 anni fa
committed by Eric Amodio
parent
commit
af86a499b4
2 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -1
      src/commands/git/rebase.ts

+ 4
- 0
CHANGELOG.md Vedi File

@ -20,6 +20,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- When a stash is applied or popped and the Source Control input is empty, we will now update the Source Control input to the stash message
- When stashing changes and the Source Control input is not empty, we will now default the stash message input to the Source Control input value
### Changed
- Uses VSCode as `core.editor` in rebase — closes [#2084](https://github.com/gitkraken/vscode-gitlens/issues/2084)
### Fixed
- Fixes [#2082](https://github.com/gitkraken/vscode-gitlens/issues/2082) - GitLens Home view unreadable in certain themes

+ 1
- 1
src/commands/git/rebase.ts Vedi File

@ -96,7 +96,7 @@ export class RebaseGitCommand extends QuickCommand {
break;
}
configs = ['-c', `sequence.editor="${editor}"`];
configs = ['-c', `sequence.editor="${editor}"`, '-c', `core.editor="${editor}"`];
}
return state.repo.rebase(configs, ...state.flags, state.reference.ref);
}

Caricamento…
Annulla
Salva