|
From: Christopher W. <caw...@us...> - 2005-12-02 02:56:17
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29944/src/org/rubypeople/rdt/internal/ui Modified Files: RubyUIMessages.properties RubyPlugin.java Log Message: For syntax highlighting: color Fixnums and characters distinctly Index: RubyPlugin.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyPlugin.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** RubyPlugin.java 20 Nov 2005 16:39:39 -0000 1.18 --- RubyPlugin.java 2 Dec 2005 02:56:05 -0000 1.19 *************** *** 282,286 **** PreferenceConverter.setDefault(store, RUBY_COMMAND, new RGB(0, 128, 128)); store.setDefault(RUBY_COMMAND + PreferenceConstants.EDITOR_BOLD_SUFFIX, false); ! store.setDefault(RUBY_COMMAND + PreferenceConstants.EDITOR_ITALIC_SUFFIX, false); PreferenceConverter.setDefault(store, RUBY_MULTI_LINE_COMMENT, new RGB(63, 127, 95)); store.setDefault(RUBY_MULTI_LINE_COMMENT + PreferenceConstants.EDITOR_BOLD_SUFFIX, false); --- 282,292 ---- PreferenceConverter.setDefault(store, RUBY_COMMAND, new RGB(0, 128, 128)); store.setDefault(RUBY_COMMAND + PreferenceConstants.EDITOR_BOLD_SUFFIX, false); ! store.setDefault(RUBY_COMMAND + PreferenceConstants.EDITOR_ITALIC_SUFFIX, false); ! PreferenceConverter.setDefault(store, RUBY_FIXNUM, new RGB(0, 128, 255)); ! store.setDefault(RUBY_FIXNUM + PreferenceConstants.EDITOR_BOLD_SUFFIX, true); ! store.setDefault(RUBY_FIXNUM + PreferenceConstants.EDITOR_ITALIC_SUFFIX, false); ! PreferenceConverter.setDefault(store, RUBY_CHARACTER, new RGB(255, 128, 128)); ! store.setDefault(RUBY_CHARACTER + PreferenceConstants.EDITOR_BOLD_SUFFIX, true); ! store.setDefault(RUBY_CHARACTER + PreferenceConstants.EDITOR_ITALIC_SUFFIX, true); PreferenceConverter.setDefault(store, RUBY_MULTI_LINE_COMMENT, new RGB(63, 127, 95)); store.setDefault(RUBY_MULTI_LINE_COMMENT + PreferenceConstants.EDITOR_BOLD_SUFFIX, false); Index: RubyUIMessages.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyUIMessages.properties,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RubyUIMessages.properties 24 Oct 2005 22:57:42 -0000 1.9 --- RubyUIMessages.properties 2 Dec 2005 02:56:04 -0000 1.10 *************** *** 60,63 **** --- 60,65 ---- RubyEditorPropertyPage.color_ruby_regexp=Regular Expressions RubyEditorPropertyPage.color_ruby_command=Shell Commands + RubyEditorPropertyPage.color_ruby_fixnum=Fixnums + RubyEditorPropertyPage.color_ruby_character=Character Values RubyEditorPropertyPage.indentation=Characters per indentation level: RubyEditorPropertyPage.useTab=Use tab (if disabled, typed tabs are also converted to spaces) |