@@ -32,13 +32,13 @@ import { IEnvironmentService } from 'vs/platform/environment/common/environment'
32
32
33
33
registerSingleton ( ISessionSyncWorkbenchService , SessionSyncWorkbenchService ) ;
34
34
35
- const applyLatestCommand = {
36
- id : 'workbench.experimental.sessionSync.actions.applyLatest ' ,
37
- title : localize ( 'apply latest' , "{0}: Apply Latest Edit Session" , EDIT_SESSION_SYNC_TITLE ) ,
35
+ const resumeLatestCommand = {
36
+ id : 'workbench.experimental.sessionSync.actions.resumeLatest ' ,
37
+ title : localize ( 'resume latest' , "{0}: Resume Latest Edit Session" , EDIT_SESSION_SYNC_TITLE ) ,
38
38
} ;
39
- const storeLatestCommand = {
40
- id : 'workbench.experimental.sessionSync.actions.storeLatest ' ,
41
- title : localize ( 'store latest ' , "{0}: Store Latest Edit Session" , EDIT_SESSION_SYNC_TITLE ) ,
39
+ const storeCurrentCommand = {
40
+ id : 'workbench.experimental.sessionSync.actions.storeCurrent ' ,
41
+ title : localize ( 'store current ' , "{0}: Store Current Edit Session" , EDIT_SESSION_SYNC_TITLE ) ,
42
42
} ;
43
43
const continueEditSessionCommand = {
44
44
id : '_workbench.experimental.sessionSync.actions.continueEditSession' ,
@@ -129,8 +129,8 @@ export class SessionSyncContribution extends Disposable implements IWorkbenchCon
129
129
this . _register ( registerAction2 ( class ApplyLatestEditSessionAction extends Action2 {
130
130
constructor ( ) {
131
131
super ( {
132
- id : applyLatestCommand . id ,
133
- title : applyLatestCommand . title ,
132
+ id : resumeLatestCommand . id ,
133
+ title : resumeLatestCommand . title ,
134
134
menu : {
135
135
id : MenuId . CommandPalette ,
136
136
}
@@ -151,8 +151,8 @@ export class SessionSyncContribution extends Disposable implements IWorkbenchCon
151
151
this . _register ( registerAction2 ( class StoreLatestEditSessionAction extends Action2 {
152
152
constructor ( ) {
153
153
super ( {
154
- id : storeLatestCommand . id ,
155
- title : storeLatestCommand . title ,
154
+ id : storeCurrentCommand . id ,
155
+ title : storeCurrentCommand . title ,
156
156
menu : {
157
157
id : MenuId . CommandPalette ,
158
158
}
0 commit comments