@@ -216,7 +216,7 @@ class CommandlineHome extends CommandLineAction {
216
216
keys = [ [ '<Home>' ] , [ '<C-b>' ] ] ;
217
217
218
218
protected override async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
219
- await commandLine . home ( ) ;
219
+ commandLine . home ( ) ;
220
220
}
221
221
}
222
222
@@ -225,7 +225,7 @@ class CommandLineEnd extends CommandLineAction {
225
225
keys = [ [ '<End>' ] , [ '<C-e>' ] ] ;
226
226
227
227
protected override async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
228
- await commandLine . end ( ) ;
228
+ commandLine . end ( ) ;
229
229
}
230
230
}
231
231
@@ -234,7 +234,7 @@ class CommandLineDeleteWord extends CommandLineAction {
234
234
keys = [ [ '<C-w>' ] , [ '<C-BS>' ] ] ;
235
235
236
236
protected override async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
237
- await commandLine . deleteWord ( ) ;
237
+ commandLine . deleteWord ( ) ;
238
238
}
239
239
}
240
240
@@ -243,7 +243,7 @@ class CommandLineDeleteToBeginning extends CommandLineAction {
243
243
keys = [ '<C-u>' ] ;
244
244
245
245
protected override async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
246
- await commandLine . deleteToBeginning ( ) ;
246
+ commandLine . deleteToBeginning ( ) ;
247
247
}
248
248
}
249
249
@@ -252,7 +252,7 @@ class CommandLineWordLeft extends CommandLineAction {
252
252
keys = [ '<C-left>' ] ;
253
253
254
254
protected async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
255
- await commandLine . wordLeft ( ) ;
255
+ commandLine . wordLeft ( ) ;
256
256
}
257
257
}
258
258
@@ -261,7 +261,7 @@ class CommandLineWordRight extends CommandLineAction {
261
261
keys = [ '<C-right>' ] ;
262
262
263
263
protected async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
264
- await commandLine . wordRight ( ) ;
264
+ commandLine . wordRight ( ) ;
265
265
}
266
266
}
267
267
@@ -270,7 +270,7 @@ class CommandLineHistoryBack extends CommandLineAction {
270
270
keys = [ [ '<up>' ] , [ '<C-p>' ] ] ;
271
271
272
272
protected async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
273
- await commandLine . historyBack ( ) ;
273
+ commandLine . historyBack ( ) ;
274
274
}
275
275
}
276
276
@@ -279,7 +279,7 @@ class CommandLineHistoryForward extends CommandLineAction {
279
279
keys = [ [ '<down>' ] , [ '<C-n>' ] ] ;
280
280
281
281
protected async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
282
- await commandLine . historyForward ( ) ;
282
+ commandLine . historyForward ( ) ;
283
283
}
284
284
}
285
285
@@ -424,6 +424,6 @@ class CommandLineType extends CommandLineAction {
424
424
keys = [ [ '<character>' ] ] ;
425
425
426
426
protected async run ( vimState : VimState , commandLine : CommandLine ) : Promise < void > {
427
- void commandLine . typeCharacter ( this . keysPressed [ 0 ] ) ;
427
+ commandLine . typeCharacter ( this . keysPressed [ 0 ] ) ;
428
428
}
429
429
}
0 commit comments