From: Jos v.d.V. <jo...@us...> - 2006-06-07 10:08:18
|
Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15131/apps/Win32ForthIDE Modified Files: EdMenu.f Main.f Log Message: Jos: Added ctrl+shift+F Index: Main.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/Main.f,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.f 7 Jun 2006 01:41:26 -0000 1.2 --- Main.f 7 Jun 2006 10:08:13 -0000 1.3 *************** *** 672,676 **** New> HtmlChild to ActiveChild MDIClientWindow: Frame Start: ActiveChild ; ! :noname ( -- ) \ open a new child window for browsing the source files \ used by 'the class and vocabulary browser' and the --- 672,676 ---- New> HtmlChild to ActiveChild MDIClientWindow: Frame Start: ActiveChild ; ! :noname ( -- ) \ open a new child window for browsing the source files \ used by 'the class and vocabulary browser' and the *************** *** 779,782 **** --- 779,783 ---- FALT 'C' IDM_COMMENT_BLOCK ACCELENTRY FALT 'U' IDM_UNCOMMENT_BLOCK ACCELENTRY + FSHIFT FCONTROL or 'F' IDM_FIND_IN_FILES ACCELENTRY \ DexH menu Index: EdMenu.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/EdMenu.f,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EdMenu.f 5 Jun 2006 09:19:00 -0000 1.1 --- EdMenu.f 7 Jun 2006 10:08:13 -0000 1.2 *************** *** 63,67 **** \ :MenuItem me_findprev "Search &prev\tShift+F3" IDM_FIND_PREVIOUS DoCommand ; MenuSeparator ! :MenuItem me_findinfiles "Find Text in Files..." IDM_FIND_IN_FILES DoCommand ; MenuSeparator :MenuItem me_date "&Insert Date\tAlt+D" IDM_INSERT_DATE DoCommand ; --- 63,67 ---- \ :MenuItem me_findprev "Search &prev\tShift+F3" IDM_FIND_PREVIOUS DoCommand ; MenuSeparator ! :MenuItem me_findinfiles "Find Text in Files...\tCtrl+Shift+F" IDM_FIND_IN_FILES DoCommand ; MenuSeparator :MenuItem me_date "&Insert Date\tAlt+D" IDM_INSERT_DATE DoCommand ; |