[Python-checkins] python/dist/src/Lib/idlelib config-highlight.def, 1.8, 1.9 help.txt, 1.10, 1.11

kbk at users.sourceforge.net kbk at users.sourceforge.net
Mon Mar 15 22:36:44 EST 2004


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16355

Modified Files:
	config-highlight.def help.txt 
Log Message:
1. Make builtin foreground Royal Purple instead of Barney Purple.
2. Touch up help.txt

M config-highlight.def
M help.txt


Index: config-highlight.def
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/config-highlight.def,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** config-highlight.def	8 Mar 2004 18:15:31 -0000	1.8
--- config-highlight.def	16 Mar 2004 03:36:41 -0000	1.9
***************
*** 7,11 ****
  keyword-foreground= #ff7700
  keyword-background= #ffffff
! builtin-foreground= #ca00ca
  builtin-background= #ffffff
  comment-foreground= #dd0000
--- 7,11 ----
  keyword-foreground= #ff7700
  keyword-background= #ffffff
! builtin-foreground= #900090
  builtin-background= #ffffff
  comment-foreground= #dd0000
***************
*** 23,27 ****
  error-foreground= #000000
  error-background= #ff7777
! #cursor (only foreground can be set)
  cursor-foreground= black
  #shell window
--- 23,27 ----
  error-foreground= #000000
  error-background= #ff7777
! #cursor (only foreground can be set, restart IDLE)
  cursor-foreground= black
  #shell window
***************
*** 38,42 ****
  keyword-foreground= #ff7700
  keyword-background= #ffffff
! builtin-foreground= #ca00ca
  builtin-background= #ffffff
  comment-foreground= #dd0000
--- 38,42 ----
  keyword-foreground= #ff7700
  keyword-background= #ffffff
! builtin-foreground= #900090
  builtin-background= #ffffff
  comment-foreground= #dd0000
***************
*** 54,58 ****
  error-foreground= #000000
  error-background= #ff7777
! #cursor (only foreground can be set)
  cursor-foreground= black
  #shell window
--- 54,58 ----
  error-foreground= #000000
  error-background= #ff7777
! #cursor (only foreground can be set, restart IDLE)
  cursor-foreground= black
  #shell window

Index: help.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/help.txt,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** help.txt	16 Jul 2003 03:10:43 -0000	1.10
--- help.txt	16 Mar 2004 03:36:41 -0000	1.11
***************
*** 56,59 ****
--- 56,60 ----
  	Uncomment Region    -- Remove leading # or ## from selected lines
  	Tabify Region       -- Turns *leading* stretches of spaces into tabs
+ 		(Note: We recommend using 4 space blocks to indent Python code.)
  	Untabify Region     -- Turn *all* tabs into the right number of spaces
  	New Indent Width... -- Open dialog to change indent width
***************
*** 118,124 ****
  Additional Help Sources:
  
! 	Windows users can Google on pythlp.chm and zopeshelf.chm to access help
! 	files in the Windows help format.  The Additional Help Sources feature
! 	of the configuration GUI supports .chm, along with any other filetypes
  	supported by your browser.  Supply a Menu Item title, and enter the
  	location in the Help File Path slot of the New Help Source dialog.  Use
--- 119,125 ----
  Additional Help Sources:
  
! 	Windows users can Google on zopeshelf.chm to access Zope help files in
! 	the Windows help format.  The Additional Help Sources feature of the
! 	configuration GUI supports .chm, along with any other filetypes
  	supported by your browser.  Supply a Menu Item title, and enter the
  	location in the Help File Path slot of the New Help Source dialog.  Use
***************
*** 132,152 ****
  Basic editing and navigation:
  
! 	Backspace deletes to the left; DEL deletes to the right
! 	Arrow keys and Page Up/Down to move around
! 	Home/End go to begin/end of line
! 	Control-Home/End go to begin/end of file
! 	Some Emacs or standard Windows bindings may work.
  	Keybindings are selected in the Settings Dialog, look there.
  
  Automatic indentation:
  
! 	After a block-opening statement, the next line is indented by
! 	4 spaces (in the Python Shell window by one tab).  After
! 	certain keywords (break, return etc.) the next line is
! 	dedented.  In leading indentation, Backspace deletes up to 4
! 	spaces if they are there.  Tab inserts spaces (in the
! 	Python Shell window one tab), number depends on Indent Width.
! 	(N.B. Currently tabs are restricted to four spaces due to Tcl/Tk
! 	issues.)
  
          See also the indent/dedent region commands in the edit menu.
--- 133,155 ----
  Basic editing and navigation:
  
! 	Backspace deletes to the left; DEL deletes to the right.
! 	Arrow keys and Page Up/Down move around.
! 	Control-left/right Arrow moves by words in a strange but useful way.
! 	Home/End go to begin/end of line.
! 	Control-Home/End go to begin/end of file.
! 	Some useful Emacs bindings (Control-a, Control-e, Control-k, etc.)
! 		are inherited from Tcl/Tk.
! 	Standard Windows bindings may work on that platform.
  	Keybindings are selected in the Settings Dialog, look there.
  
  Automatic indentation:
  
! 	After a block-opening statement, the next line is indented by 4 spaces
! 	(in the Python Shell window by one tab).  After certain keywords
! 	(break, return etc.) the next line is dedented.  In leading
! 	indentation, Backspace deletes up to 4 spaces if they are there.  Tab
! 	inserts spaces (in the Python Shell window one tab), number depends on
! 	Indent Width.  (N.B. Currently tabs are restricted to four spaces due
! 	to Tcl/Tk issues.)
  
          See also the indent/dedent region commands in the edit menu.
***************
*** 154,167 ****
  Python Shell window:
  
! 	Control-c interrupts executing command
  	Control-d sends end-of-file; closes window if typed at >>> prompt
  
      Command history:
  
! 	Alt-p retrieves previous command matching what you have typed
! 	Alt-n retrieves next
  	      (These are Control-p, Control-n on the Mac)      
! 	Return while cursor is on a previous command retrieves that command
! 	Expand word is also useful to reduce typing
  
      Syntax colors:
--- 157,171 ----
  Python Shell window:
  
! 	Control-c interrupts executing command.
  	Control-d sends end-of-file; closes window if typed at >>> prompt
+ 		(this is Control-z on Windows).
  
      Command history:
  
! 	Alt-p retrieves previous command matching what you have typed.
! 	Alt-n retrieves next.
  	      (These are Control-p, Control-n on the Mac)      
! 	Return while cursor is on a previous command retrieves that command.
! 	Expand word is also useful to reduce typing.
  
      Syntax colors:
***************
*** 169,177 ****
  	The coloring is applied in a background "thread", so you may
  	occasionally see uncolorized text.  To change the color
! 	scheme, use the Settings/Highlighting dialog.
  
      Python default syntax colors:
  
  	Keywords	orange
  	Strings		green
  	Comments	red
--- 173,182 ----
  	The coloring is applied in a background "thread", so you may
  	occasionally see uncolorized text.  To change the color
! 	scheme, use the Configure IDLE / Highlighting dialog.
  
      Python default syntax colors:
  
  	Keywords	orange
+ 	Builtins	royal purple
  	Strings		green
  	Comments	red
***************
*** 182,186 ****
  	Console output	brown
  	stdout		blue
! 	stderr		dark green
  	stdin		black
  
--- 187,191 ----
  	Console output	brown
  	stdout		blue
! 	stderr		red
  	stdin		black
  




More information about the Python-checkins mailing list