diff --git a/ide/keymapping.pp b/ide/keymapping.pp index 10234f1ccb..d72917b26f 100644 --- a/ide/keymapping.pp +++ b/ide/keymapping.pp @@ -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); diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index fef2b081db..9a413efce4 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -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';