Synedit-Completion: make end/home key work (independent of ctrl key)

git-svn-id: trunk@25422 -
This commit is contained in:
martin 2010-05-15 14:15:51 +00:00
parent fa47d74a89
commit 8db8ccf782

View File

@ -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