mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-14 04:39:45 +02:00
SynEdit: missing ecKeyCmd to string - fix recording in macro player
This commit is contained in:
parent
aa1f0f6ff6
commit
74adbc30c7
@ -511,7 +511,7 @@ end;
|
||||
{ Command mapping routines }
|
||||
|
||||
const
|
||||
EditorCommandStrs: array[0..171] of TIdentMapEntry = (
|
||||
EditorCommandStrs: array[0..172] of TIdentMapEntry = (
|
||||
(Value: ecNone; Name: 'ecNone'),
|
||||
(Value: ecLeft; Name: 'ecLeft'),
|
||||
(Value: ecRight; Name: 'ecRight'),
|
||||
@ -585,6 +585,7 @@ const
|
||||
(Value: ecSelectAll; Name: 'ecSelectAll'),
|
||||
(Value: ecDeleteLastChar; Name: 'ecDeleteLastChar'),
|
||||
(Value: ecDeleteChar; Name: 'ecDeleteChar'),
|
||||
(Value: ecDeleteCharNoCrLf; Name: 'ecDeleteCharNoCrLf'),
|
||||
(Value: ecDeleteWord; Name: 'ecDeleteWord'),
|
||||
(Value: ecDeleteLastWord; Name: 'ecDeleteLastWord'),
|
||||
(Value: ecDeleteBOL; Name: 'ecDeleteBOL'),
|
||||
|
Loading…
Reference in New Issue
Block a user