@@ -4465,12 +4465,12 @@ private bool DeleteTextForwards ()
4465
4465
}
4466
4466
else
4467
4467
{
4468
- _historyText . Add ( [ [ .. currentLine ] ] , CursorPosition ) ;
4468
+ _historyText . Add ( [ [ .. currentLine ] ] , CursorPosition ) ;
4469
4469
4470
4470
currentLine . RemoveAt ( CurrentColumn ) ;
4471
4471
4472
4472
_historyText . Add (
4473
- [ [ .. currentLine ] ] ,
4473
+ [ [ .. currentLine ] ] ,
4474
4474
CursorPosition ,
4475
4475
HistoryText . LineStatus . Replaced
4476
4476
) ;
@@ -5057,7 +5057,7 @@ private void KillToEndOfLine ()
5057
5057
}
5058
5058
5059
5059
_historyText . Add (
5060
- [ [ .. GetCurrentLine ( ) ] ] ,
5060
+ [ [ .. GetCurrentLine ( ) ] ] ,
5061
5061
CursorPosition ,
5062
5062
HistoryText . LineStatus . Replaced
5063
5063
) ;
@@ -5097,7 +5097,7 @@ private void KillToLeftStart ()
5097
5097
return ;
5098
5098
}
5099
5099
5100
- _historyText . Add ( [ [ .. currentLine ] ] , CursorPosition ) ;
5100
+ _historyText . Add ( [ [ .. currentLine ] ] , CursorPosition ) ;
5101
5101
5102
5102
if ( currentLine . Count == 0 )
5103
5103
{
@@ -5164,7 +5164,7 @@ private void KillToLeftStart ()
5164
5164
}
5165
5165
5166
5166
_historyText . Add (
5167
- [ [ .. GetCurrentLine ( ) ] ] ,
5167
+ [ [ .. GetCurrentLine ( ) ] ] ,
5168
5168
CursorPosition ,
5169
5169
HistoryText . LineStatus . Replaced
5170
5170
) ;
@@ -5188,14 +5188,14 @@ private void KillWordBackward ()
5188
5188
5189
5189
List < Cell > currentLine = GetCurrentLine ( ) ;
5190
5190
5191
- _historyText . Add ( [ [ .. GetCurrentLine ( ) ] ] , CursorPosition ) ;
5191
+ _historyText . Add ( [ [ .. GetCurrentLine ( ) ] ] , CursorPosition ) ;
5192
5192
5193
5193
if ( CurrentColumn == 0 )
5194
5194
{
5195
5195
DeleteTextBackwards ( ) ;
5196
5196
5197
5197
_historyText . ReplaceLast (
5198
- [ [ .. GetCurrentLine ( ) ] ] ,
5198
+ [ [ .. GetCurrentLine ( ) ] ] ,
5199
5199
CursorPosition ,
5200
5200
HistoryText . LineStatus . Replaced
5201
5201
) ;
@@ -5234,7 +5234,7 @@ [ [.. GetCurrentLine ()]],
5234
5234
}
5235
5235
5236
5236
_historyText . Add (
5237
- [ [ .. GetCurrentLine ( ) ] ] ,
5237
+ [ [ .. GetCurrentLine ( ) ] ] ,
5238
5238
CursorPosition ,
5239
5239
HistoryText . LineStatus . Replaced
5240
5240
) ;
@@ -5256,14 +5256,14 @@ private void KillWordForward ()
5256
5256
5257
5257
List < Cell > currentLine = GetCurrentLine ( ) ;
5258
5258
5259
- _historyText . Add ( [ [ .. GetCurrentLine ( ) ] ] , CursorPosition ) ;
5259
+ _historyText . Add ( [ [ .. GetCurrentLine ( ) ] ] , CursorPosition ) ;
5260
5260
5261
5261
if ( currentLine . Count == 0 || CurrentColumn == currentLine . Count )
5262
5262
{
5263
5263
DeleteTextForwards ( ) ;
5264
5264
5265
5265
_historyText . ReplaceLast (
5266
- [ [ .. GetCurrentLine ( ) ] ] ,
5266
+ [ [ .. GetCurrentLine ( ) ] ] ,
5267
5267
CursorPosition ,
5268
5268
HistoryText . LineStatus . Replaced
5269
5269
) ;
@@ -5293,7 +5293,7 @@ [ [.. GetCurrentLine ()]],
5293
5293
}
5294
5294
5295
5295
_historyText . Add (
5296
- [ [ .. GetCurrentLine ( ) ] ] ,
5296
+ [ [ .. GetCurrentLine ( ) ] ] ,
5297
5297
CursorPosition ,
5298
5298
HistoryText . LineStatus . Replaced
5299
5299
) ;
0 commit comments