Josh Piasecki
Josh Piasecki
@costincaraivan i'm just putting together some code to have recently used commands populated first in "find-command" so the command you just ran is the first one on the list of...
🤷🏻♂️ i tried ?
@zhuoqun-chen keyboard shortcuts in the scm view have been requested ALOT. https://github.com/microsoft/vscode/issues/24916#issuecomment-2446493025
to whoever is in charge of making changes to VS Code. the "git.stage" command is found in `extensions/git/src/commands.ts` ``` @command('git.stage') async stage(...resourceStates: SourceControlResourceState[]): Promise { this.logger.debug(`[CommandCenter][stage] git.stage ${resourceStates.length} `); resourceStates...
i didn't see that someone was already working on a similar plugin. #138 this one grabs the current word and supports multiple cursors.
`EmptyView:draw()` was rendering the logo twice on each call, once to determine it's size and then again to actually draw it. instead of doing that. I just calculated the position...
i think i got this one sorted. i just want to test it some more.
here are two screen shots of the `useGitApi()` running VSCode 1.95 a call to `useGitApi().repositories` returns an array of resources which have a `repository` available. now in version 1.97 a...
@lszomoru thank you i will try using that. could you tell me if there is a difference between `repository.state.onDidChange` and `repository.ui.onDidChange` if so when is the UI event triggered? that...
@lszomoru "selected" as in if the user interacts with the staged/unstaged files displayed in the scm view?