add copy remote url and id commands
Dependencies
- [2]
MO3G3S2VCleanup commands available in the command palette - [3]
XVYOJLZ4add Delete Remote command - [*]
ILH3GIVTAdd command centre and refresh/init commands - [*]
6H4B4UJQAdd commands to open repo and global pijul configuration files - [*]
NCBEWRYEInitialize Repository - [*]
7DXA53YQAdd command to delete channel - [*]
5ZDRHVXDAdd command to fork a new channel - [*]
HVVRC2GNAdd command to apply all outstanding changes from one channel to another
Change contents
- edit in src/commands.ts at line 377
}/*** Copy the url of a remote to the clipboard* @param remote The remote to copy the url of*/@command('pijul.copyRemoteUrl')async copyRemoteUrl (remote: PijulRemote): Promise<void> {env.clipboard.writeText(remote.url); - edit in src/commands.ts at line 389
* Copy the id of a remote to the clipboard* @param remote The remote to copy the id of*/@command('pijul.copyRemoteId')async copyRemoteId (remote: PijulRemote): Promise<void> {env.clipboard.writeText(remote.remoteid);}/** - edit in package.json at line 143
"command": "pijul.copyRemoteUrl","title": "Copy Remote Url","category": "Pijul"},{"command": "pijul.copyRemoteId","title": "Copy Remote Id","category": "Pijul"},{ - edit in package.json at line 288
"when": "false"},{"command": "pijul.copyRemoteUrl", - edit in package.json at line 295
"command": "pijul.copyRemoteId","when": "false"},{ - edit in package.json at line 506[10.1356][3.1521]
},{"command": "pijul.deleteRemote","when": "view == pijul.views.remotes && viewItem == pijulRemote","group": "changeFirst"},{"command": "pijul.copyRemoteUrl","when": "view == pijul.views.remotes && viewItem == pijulRemote","group": "changeSecond"},{"command": "pijul.copyRemoteId","when": "view == pijul.views.remotes && viewItem == pijulRemote","group": "changeSecond"