1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 19:35:36 +02:00

Default Prefix for comment.

This commit is contained in:
Alain Magloire 2003-10-17 02:32:25 +00:00
parent 4fda51818b
commit 8331d66485

View file

@ -138,4 +138,11 @@ public class MakefileSourceConfiguration extends SourceViewerConfiguration {
return reconciler;
}
/* (non-Javadoc)
* @see org.eclipse.jface.text.source.SourceViewerConfiguration#getDefaultPrefixes(org.eclipse.jface.text.source.ISourceViewer, java.lang.String)
*/
public String[] getDefaultPrefixes(ISourceViewer sourceViewer, String contentType) {
return new String[]{"#"};
}
}