Changeset 350
- Timestamp:
- 09/14/08 06:55:03 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/editors/LispConfiguration.java
r337 r350 116 116 } 117 117 118 public String showParameterHints () { 119 118 public String showParameterHints () { 120 119 return ca.showContextInformation(); 121 120 } jasko.tim.lisp/src/jasko/tim/lisp/preferences/AutoEditsPreferencePage.java
r349 r350 86 86 removeButton.setLayoutData(data); 87 87 88 Label helpLbl = new Label(entryTable, SWT.BORDER); 89 helpLbl.setText("AutoEdits allows automatic substituion as you type.\n" + 88 return entryTable; 89 } 90 91 /* 92 * @see IWorkbenchPreferencePage#init(IWorkbench) 93 */ 94 public void init(IWorkbench workbench) { 95 //Initialize the preference store we wish to use 96 setPreferenceStore(LispPlugin.getDefault().getPreferenceStore()); 97 setDescription("AutoEdits allows automatic substituion as you type.\n" + 90 98 "They consist of two parts: trigger and substitution.\n" + 91 99 "In an AutoEdit specification these parts are seperated by ';'.\n" + … … 97 105 "Note: AutoEdits work only in lisp code and are not triggered\n" + 98 106 "in comments or strings."); 99 data = new GridData(GridData.FILL_BOTH);100 helpLbl.setLayoutData(data);101 102 103 return entryTable;104 }105 106 /*107 * @see IWorkbenchPreferencePage#init(IWorkbench)108 */109 public void init(IWorkbench workbench) {110 //Initialize the preference store we wish to use111 setPreferenceStore(LispPlugin.getDefault().getPreferenceStore());112 107 } 113 108 jasko.tim.lisp/src/jasko/tim/lisp/preferences/ColorsPreferencePage.java
r218 r350 24 24 public ColorsPreferencePage() { 25 25 super(GRID); 26 setPreferenceStore(LispPlugin.getDefault().getPreferenceStore());27 setDescription("Set colors and styles for Lisp code formatting");28 26 } 29 27 … … 95 93 */ 96 94 public void init(IWorkbench workbench) { 95 setPreferenceStore(LispPlugin.getDefault().getPreferenceStore()); 96 setDescription("Set colors and styles for Lisp code formatting.\n" + 97 "To see changes - close and reopen a lisp editor."); 97 98 } 98 99
