|
From: Christopher W. <caw...@us...> - 2005-12-02 16:18:19
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21995/src/org/rubypeople/rdt/internal/ui Modified Files: RubyUIMessages.properties RubyPlugin.java Log Message: Allow distinct syntax highlighting of symbols Index: RubyPlugin.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyPlugin.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** RubyPlugin.java 2 Dec 2005 02:56:05 -0000 1.19 --- RubyPlugin.java 2 Dec 2005 16:18:11 -0000 1.20 *************** *** 289,292 **** --- 289,295 ---- store.setDefault(RUBY_CHARACTER + PreferenceConstants.EDITOR_BOLD_SUFFIX, true); store.setDefault(RUBY_CHARACTER + PreferenceConstants.EDITOR_ITALIC_SUFFIX, true); + PreferenceConverter.setDefault(store, RUBY_SYMBOL, new RGB(255, 64, 64)); + store.setDefault(RUBY_SYMBOL + PreferenceConstants.EDITOR_BOLD_SUFFIX, true); + store.setDefault(RUBY_SYMBOL + 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); Index: RubyUIMessages.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyUIMessages.properties,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** RubyUIMessages.properties 2 Dec 2005 02:56:04 -0000 1.10 --- RubyUIMessages.properties 2 Dec 2005 16:18:11 -0000 1.11 *************** *** 62,65 **** --- 62,66 ---- RubyEditorPropertyPage.color_ruby_fixnum=Fixnums RubyEditorPropertyPage.color_ruby_character=Character Values + RubyEditorPropertyPage.color_ruby_symbol=Symbols RubyEditorPropertyPage.indentation=Characters per indentation level: RubyEditorPropertyPage.useTab=Use tab (if disabled, typed tabs are also converted to spaces) |