src/main/resources/xelfi/editor/actions/Default.key
changeset 8 09cacfcd32fd
parent 0 189280700bc7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main/resources/xelfi/editor/actions/Default.key	Tue Jan 17 21:11:27 2017 +0100
     1.3 @@ -0,0 +1,64 @@
     1.4 +
     1.5 +
     1.6 +
     1.7 +key [DEL] { KillChar; }
     1.8 +key [BACKSP] { KillPrevChar; }
     1.9 +key [LEFT] { MoveLeft; }    //MovePrev
    1.10 +key [RIGHT] { MoveRight; }  //MoveNext
    1.11 +key [UP] { MoveUp; }
    1.12 +key [DOWN] { MoveDown; }
    1.13 +key [HOME] { MoveLineStart; }
    1.14 +key [END] { MoveLineEnd; }
    1.15 +key [PGUP] { MovePageUp; }
    1.16 +key [PGDN] { MovePageDown; }
    1.17 +key [C+PGUP] { MoveFileStart; }
    1.18 +key [C+PGDN] { MoveFileEnd; }
    1.19 +
    1.20 +key [S+LEFT] { BlockExtendBegin; MoveLeft; BlockExtendEnd; }    
    1.21 +key [S+RIGHT] { BlockExtendBegin; MoveRight; BlockExtendEnd; }  
    1.22 +key [S+UP] { BlockExtendBegin; MoveUp; BlockExtendEnd; }
    1.23 +key [S+DOWN] { BlockExtendBegin; MoveDown; BlockExtendEnd; }
    1.24 +key [S+HOME] { BlockExtendBegin; MoveLineStart; BlockExtendEnd;}
    1.25 +key [S+END] { BlockExtendBegin; MoveLineEnd; BlockExtendEnd;}
    1.26 +key [S+PGUP] { BlockExtendBegin; MovePageUp; BlockExtendEnd;}
    1.27 +key [S+PGDN] { BlockExtendBegin; MovePageDown; BlockExtendEnd;}
    1.28 +key [S+C+PGUP] { BlockExtendBegin; MoveFileStart; BlockExtendEnd; }
    1.29 +key [S+C+PGDN] { BlockExtendBegin; MoveFileEnd; BlockExtendEnd; }
    1.30 +
    1.31 +
    1.32 +key [C+Y] { KillLine; }
    1.33 +
    1.34 +
    1.35 +key [C+K_C-B] { BlockBegin; }
    1.36 +key [C+K_C-K] { BlockEnd; }
    1.37 +key [C+K_C-H] { BlockUnmark; }
    1.38 +key [C+K_C-C] { BlockDirectCopy; }
    1.39 +key [C+K_C-V] { BlockDirectMove; }
    1.40 +
    1.41 +key [ESC] { BlockUnmark; }
    1.42 +key [C+C] { BlockCopy; }
    1.43 +key [C+V] { BlockPaste; }
    1.44 +key [C+X] { BlockCut; }
    1.45 +
    1.46 +key [C+Q_C-0] { GotoBookmark "0"; }
    1.47 +key [C+Q_C-1] { GotoBookmark "1"; }
    1.48 +key [C+Q_C-2] { GotoBookmark "2"; }
    1.49 +key [C+Q_C-3] { GotoBookmark "3"; }
    1.50 +key [C+Q_C-4] { GotoBookmark "4"; }
    1.51 +key [C+Q_C-5] { GotoBookmark "5"; }
    1.52 +key [C+Q_C-6] { GotoBookmark "6"; }
    1.53 +key [C+Q_C-7] { GotoBookmark "7"; }
    1.54 +key [C+Q_C-8] { GotoBookmark "8"; }
    1.55 +key [C+Q_C-9] { GotoBookmark "9"; }
    1.56 +
    1.57 +key [C+K_C-0] { PlaceBookmark "0"; }
    1.58 +key [C+K_C-1] { PlaceBookmark "1"; }
    1.59 +key [C+K_C-2] { PlaceBookmark "2"; }
    1.60 +key [C+K_C-3] { PlaceBookmark "3"; }
    1.61 +key [C+K_C-4] { PlaceBookmark "4"; }
    1.62 +key [C+K_C-5] { PlaceBookmark "5"; }
    1.63 +key [C+K_C-6] { PlaceBookmark "6"; }
    1.64 +key [C+K_C-7] { PlaceBookmark "7"; }
    1.65 +key [C+K_C-8] { PlaceBookmark "8"; }
    1.66 +key [C+K_C-9] { PlaceBookmark "9"; }
    1.67 +