mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-04 08:07:34 +01:00
IDE: new more simple naming for smart editor move commands
git-svn-id: trunk@57898 -
This commit is contained in:
parent
8356f39b7d
commit
9997fa404c
@ -2614,8 +2614,8 @@ begin
|
||||
AddDefault(C, 'Move cursor word end right', srkmecWordEndRight, ecWordEndRight);
|
||||
AddDefault(C, 'Move cursor half word left', srkmecHalfWordLeft, ecHalfWordLeft);
|
||||
AddDefault(C, 'Move cursor half word right', srkmecHalfWordRight, ecHalfWordRight);
|
||||
AddDefault(C, 'Move cursor left to either current word start or previous word end', srkmecSmartWordLeft, ecSmartWordLeft);
|
||||
AddDefault(C, 'Move cursor right to either current word end or next word start', srkmecSmartWordRight, ecSmartWordRight);
|
||||
AddDefault(C, 'Smart move cursor word left', srkmecSmartWordLeft, ecSmartWordLeft);
|
||||
AddDefault(C, 'Smart move cursor word right', srkmecSmartWordRight, ecSmartWordRight);
|
||||
AddDefault(C, 'Move cursor to line start', srkmecLineStart, ecLineStart);
|
||||
AddDefault(C, 'Move cursor to text start in line', srkmecLineTextStart, ecLineTextStart);
|
||||
AddDefault(C, 'Move cursor to line end', srkmecLineEnd, ecLineEnd);
|
||||
@ -2665,8 +2665,8 @@ begin
|
||||
AddDefault(C, 'Select word end right', srkmecSelWordEndRight, ecSelWordEndRight);
|
||||
AddDefault(C, 'Select half word left', srkmecSelHalfWordLeft, ecSelHalfWordLeft);
|
||||
AddDefault(C, 'Select half word right', srkmecSelHalfWordRight, ecSelHalfWordRight);
|
||||
AddDefault(C, 'Select left to either current word start or previous word end', srkmecSelSmartWordLeft, ecSelSmartWordLeft);
|
||||
AddDefault(C, 'Select right to either current word end or next word start', srkmecSelSmartWordRight, ecSelSmartWordRight);
|
||||
AddDefault(C, 'Smart select word left', srkmecSelSmartWordLeft, ecSelSmartWordLeft);
|
||||
AddDefault(C, 'Smart select word right', srkmecSelSmartWordRight, ecSelSmartWordRight);
|
||||
AddDefault(C, 'Select line start', lisKMSelectLineStart, ecSelLineStart);
|
||||
AddDefault(C, 'Select to text start in line', srkmecSelLineTextStart, ecSelLineTextStart);
|
||||
AddDefault(C, 'Select line end', lisKMSelectLineEnd, ecSelLineEnd);
|
||||
|
||||
@ -2952,8 +2952,8 @@ resourcestring
|
||||
srkmecWordEndRight = 'Move cursor word-end right';
|
||||
srkmecHalfWordLeft = 'Move cursor part-word left (e.g. CamelCase)';
|
||||
srkmecHalfWordRight = 'Move cursor part-word right (e.g. CamelCase)';
|
||||
srkmecSmartWordLeft = 'Move cursor left to either current word start or previous word end';
|
||||
srkmecSmartWordRight = 'Move cursor right to either current word end or next word start';
|
||||
srkmecSmartWordLeft = 'Smart move cursor left (start/end of word)';
|
||||
srkmecSmartWordRight = 'Smart move cursor right (start/end of word)';
|
||||
srkmecLineStart = 'Move cursor to line start';
|
||||
srkmecLineEnd = 'Move cursor to line end';
|
||||
srkmecPageUp = 'Move cursor up one page';
|
||||
@ -2980,8 +2980,8 @@ resourcestring
|
||||
srkmecSelWordEndRight = 'Select word-end right';
|
||||
srkmecSelHalfWordLeft = 'Select part-word left (e.g. CamelCase)';
|
||||
srkmecSelHalfWordRight = 'Select part-word right (e.g. CamelCase)';
|
||||
srkmecSelSmartWordLeft = 'Select left to either current word start or previous word end';
|
||||
srkmecSelSmartWordRight = 'Select right to either current word end or next word start';
|
||||
srkmecSelSmartWordLeft = 'Smart select word left (start/end of word)';
|
||||
srkmecSelSmartWordRight = 'Smart select word right (start/end of word)';
|
||||
srkmecSelLineStart = 'Select Line Start';
|
||||
srkmecSelLineEnd = 'Select Line End';
|
||||
srkmecSelPageUp = 'Select Page Up';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user