mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 17:19:22 +02:00
Synedit-Completion: make end/home key work (independent of ctrl key)
git-svn-id: trunk@25422 -
This commit is contained in:
parent
fa47d74a89
commit
8db8ccf782
@ -522,9 +522,9 @@ begin
|
||||
for i := 1 to NbLinesInWindow do
|
||||
SelectNext;
|
||||
VK_END:
|
||||
if ssCtrl in Shift then Position := ItemList.count - 1;
|
||||
Position := ItemList.count - 1;
|
||||
VK_HOME:
|
||||
if ssCtrl in Shift then Position := 0;
|
||||
Position := 0;
|
||||
VK_UP:
|
||||
if ssCtrl in Shift then
|
||||
Position := 0
|
||||
|
Loading…
Reference in New Issue
Block a user