mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-06 00:18:57 +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 word end right', srkmecWordEndRight, ecWordEndRight);
|
||||||
AddDefault(C, 'Move cursor half word left', srkmecHalfWordLeft, ecHalfWordLeft);
|
AddDefault(C, 'Move cursor half word left', srkmecHalfWordLeft, ecHalfWordLeft);
|
||||||
AddDefault(C, 'Move cursor half word right', srkmecHalfWordRight, ecHalfWordRight);
|
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, 'Smart move cursor word left', srkmecSmartWordLeft, ecSmartWordLeft);
|
||||||
AddDefault(C, 'Move cursor right to either current word end or next word start', srkmecSmartWordRight, ecSmartWordRight);
|
AddDefault(C, 'Smart move cursor word right', srkmecSmartWordRight, ecSmartWordRight);
|
||||||
AddDefault(C, 'Move cursor to line start', srkmecLineStart, ecLineStart);
|
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 text start in line', srkmecLineTextStart, ecLineTextStart);
|
||||||
AddDefault(C, 'Move cursor to line end', srkmecLineEnd, ecLineEnd);
|
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 word end right', srkmecSelWordEndRight, ecSelWordEndRight);
|
||||||
AddDefault(C, 'Select half word left', srkmecSelHalfWordLeft, ecSelHalfWordLeft);
|
AddDefault(C, 'Select half word left', srkmecSelHalfWordLeft, ecSelHalfWordLeft);
|
||||||
AddDefault(C, 'Select half word right', srkmecSelHalfWordRight, ecSelHalfWordRight);
|
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, 'Smart select word left', srkmecSelSmartWordLeft, ecSelSmartWordLeft);
|
||||||
AddDefault(C, 'Select right to either current word end or next word start', srkmecSelSmartWordRight, ecSelSmartWordRight);
|
AddDefault(C, 'Smart select word right', srkmecSelSmartWordRight, ecSelSmartWordRight);
|
||||||
AddDefault(C, 'Select line start', lisKMSelectLineStart, ecSelLineStart);
|
AddDefault(C, 'Select line start', lisKMSelectLineStart, ecSelLineStart);
|
||||||
AddDefault(C, 'Select to text start in line', srkmecSelLineTextStart, ecSelLineTextStart);
|
AddDefault(C, 'Select to text start in line', srkmecSelLineTextStart, ecSelLineTextStart);
|
||||||
AddDefault(C, 'Select line end', lisKMSelectLineEnd, ecSelLineEnd);
|
AddDefault(C, 'Select line end', lisKMSelectLineEnd, ecSelLineEnd);
|
||||||
|
|||||||
@ -2952,8 +2952,8 @@ resourcestring
|
|||||||
srkmecWordEndRight = 'Move cursor word-end right';
|
srkmecWordEndRight = 'Move cursor word-end right';
|
||||||
srkmecHalfWordLeft = 'Move cursor part-word left (e.g. CamelCase)';
|
srkmecHalfWordLeft = 'Move cursor part-word left (e.g. CamelCase)';
|
||||||
srkmecHalfWordRight = 'Move cursor part-word right (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';
|
srkmecSmartWordLeft = 'Smart move cursor left (start/end of word)';
|
||||||
srkmecSmartWordRight = 'Move cursor right to either current word end or next word start';
|
srkmecSmartWordRight = 'Smart move cursor right (start/end of word)';
|
||||||
srkmecLineStart = 'Move cursor to line start';
|
srkmecLineStart = 'Move cursor to line start';
|
||||||
srkmecLineEnd = 'Move cursor to line end';
|
srkmecLineEnd = 'Move cursor to line end';
|
||||||
srkmecPageUp = 'Move cursor up one page';
|
srkmecPageUp = 'Move cursor up one page';
|
||||||
@ -2980,8 +2980,8 @@ resourcestring
|
|||||||
srkmecSelWordEndRight = 'Select word-end right';
|
srkmecSelWordEndRight = 'Select word-end right';
|
||||||
srkmecSelHalfWordLeft = 'Select part-word left (e.g. CamelCase)';
|
srkmecSelHalfWordLeft = 'Select part-word left (e.g. CamelCase)';
|
||||||
srkmecSelHalfWordRight = 'Select part-word right (e.g. CamelCase)';
|
srkmecSelHalfWordRight = 'Select part-word right (e.g. CamelCase)';
|
||||||
srkmecSelSmartWordLeft = 'Select left to either current word start or previous word end';
|
srkmecSelSmartWordLeft = 'Smart select word left (start/end of word)';
|
||||||
srkmecSelSmartWordRight = 'Select right to either current word end or next word start';
|
srkmecSelSmartWordRight = 'Smart select word right (start/end of word)';
|
||||||
srkmecSelLineStart = 'Select Line Start';
|
srkmecSelLineStart = 'Select Line Start';
|
||||||
srkmecSelLineEnd = 'Select Line End';
|
srkmecSelLineEnd = 'Select Line End';
|
||||||
srkmecSelPageUp = 'Select Page Up';
|
srkmecSelPageUp = 'Select Page Up';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user