mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-14 16:19:46 +02:00
SynEdit: changed keycombo for (un)indent from ctrl+shift i/u to just ctrl i/u / Resolves conflict with IMM for Unicode input. Issue #40810
This commit is contained in:
parent
f20e3ef6a6
commit
d291c5479f
@ -1208,11 +1208,11 @@ begin
|
||||
AddKey(ecLineBreak, VK_RETURN, []);
|
||||
AddKey(ecSelectAll, ord('A'), [ssCtrl]);
|
||||
AddKey(ecCopy, ord('C'), [ssCtrl]);
|
||||
AddKey(ecBlockIndent, ord('I'), [ssCtrl,ssShift]);
|
||||
AddKey(ecBlockIndent, ord('I'), [ssCtrl]);
|
||||
AddKey(ecLineBreak, ord('M'), [ssCtrl]);
|
||||
AddKey(ecInsertLine, ord('N'), [ssCtrl]);
|
||||
AddKey(ecDeleteWord, ord('T'), [ssCtrl]);
|
||||
AddKey(ecBlockUnindent, ord('U'), [ssCtrl,ssShift]);
|
||||
AddKey(ecBlockUnindent, ord('U'), [ssCtrl]);
|
||||
AddKey(ecPaste, ord('V'), [ssCtrl]);
|
||||
AddKey(ecCut, ord('X'), [ssCtrl]);
|
||||
AddKey(ecDeleteLine, ord('Y'), [ssCtrl]);
|
||||
|
Loading…
Reference in New Issue
Block a user