keys changed: Ctrl-Backspace acts as Backspace, Ctrl-W deletes word left

This commit is contained in:
Stas Degteff 2010-03-12 11:21:39 +00:00
parent 0ce8534f9a
commit 69493f5724
5 changed files with 13 additions and 3 deletions

View File

@ -136,10 +136,11 @@ Del EDITdelchar
@Y EDITdeleteeol
; EDITdeletesol
BackSpace EDITdelleft
^BackSpace EditDelLeft
@D EDITdelline
^Y EDITdelline
^BackSpace EDITdelltword
^F5 EDITdelltword
^W EditDelLtWord
^T EDITdelrtword
^F6 EDITdelrtword
@O EDITdosshell

View File

@ -85,10 +85,11 @@ Del EditDelChar
@Y EditDeleteEol
^K EditDeleteSol ; “¤ «¥­¨¥ ⥪áâ  ª ­ ç «ã áâப¨.
BackSpace EditDelLeft
^BackSpace EditDelLeft
^Del EditDelete
^Y EditDelLine
^F5 EditDelLtWord ; “¤ «¥­¨¥ á«®¢  á«¥¢  ®â ªãàá®à .
^BackSpace EditDelLtWord ; <20><><EFBFBD><EFBFBD><EFBFBD><><E79484> 甄ア<E79484> <20> <20><EFBFBD><E78F80>.
^W EditDelLtWord ; <20><><EFBFBD><EFBFBD><EFBFBD><><E79484> 甄ア<E79484> <20> <20><EFBFBD><E78F80>.
^F6 EditDelRtWord ; “¤ «¥­¨¥ á«®¢  á¯à ¢  ®â ªãàá®à .
^T EditDelRtWord ; “¤ «¥­¨¥ á«®¢  á¯à ¢  ®â ªãàá®à 
@O EditDosShell

View File

@ -10,6 +10,9 @@ _____________________________________________________________________________
‡ ¬¥âª¨ ¤«ï GoldED+ 1.1.5, /snapshot/
_____________________________________________________________________________
! <20>¥à¥­ §­ ç¥­ë ª« ¢¨è¨: Ctrl-Backspace ⥯¥àì 㤠«ï¥â ᨬ¢®« ¢«¥¢®, Ctrl-W
㤠«ï¥â á«®¢® ¢«¥¢®. (Ž¡å®¤ ¡ £  á ®¯à¥¤¥«¥­¨¥¬ Ctrl-Backspace ¢ Linux.)
! …᫨ TEMPPATH 㪠§ë¢ ¥â ­  ­¥áãé¥áâ¢ãî騩 ª â «®£, Golded+ ¯®ª §ë¢ ¥â
á®®¡é¥­¨¥ ® ­¥¢¥à­®¬ TEMPPATH ¨ ­¨ç¥£® ­¥ ¤¥« ¥â: ¯à¨ ¤¥ª®¤¨à®¢ ­¨¨ UUE,
¯à¨ ¨¬¯®à⥠१ã«ìâ â  ª®¬ ­¤ë, ¯à¨ ¢ë§®¢¥ ¢­¥è­¥© ã⨫¨âë, ¯à¨ á®åà ­¥­¨¨

View File

@ -10,6 +10,10 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
! Keyboard shortcats is chnged: now Ctrl-Backspace deletes char to
left and Ctrl-W deletes word to left. (Workaround to Ctrl-Backspace
detection bug in Linux.)
! If TEMPPATH is pointed to unexisted directory the Golded+ displays
message about invalid TEMPPATH and does nothing on UU-decoding, on
importing result of shell command, on calling extern utility and

View File

@ -73,10 +73,11 @@ CmdKey DefaultKeyset[] = {
{ Key_A_K , KK_EditDeleteEOL , KT_E },
{ Key_A_Y , KK_EditDeleteEOL , KT_E },
{ Key_BS , KK_EditDelLeft , KT_E },
{ Key_C_BS , KK_EditDelLeft , KT_E },
{ Key_A_D , KK_EditDelLine , KT_E },
{ Key_C_Y , KK_EditDelLine , KT_E },
{ Key_C_BS , KK_EditDelLtWord , KT_E },
{ Key_C_F5 , KK_EditDelLtWord , KT_E },
{ Key_C_W , KK_EditDelLtWord , KT_R },
{ Key_C_T , KK_EditDelRtWord , KT_E },
{ Key_C_F6 , KK_EditDelRtWord , KT_E },
{ Key_A_O , KK_EditDosShell , KT_E },