public bool PopulateLexerConfig(ILexerConfig config)
 {
     ScintillaPropertiesHelper.Populate(config.ScintillaConfig, GetResource("lex." + config.LexerName.ToLower() + ".properties"));
     return(true);
 }
 public bool PopulateLanguageConfig(ILanguageConfig config, ILexerConfigCollection lexers)
 {
     ScintillaPropertiesHelper.Populate(config.ScintillaConfig, GetResource("lang." + config.Name.ToLower() + ".properties"));
     return(true);
 }
 public bool PopulateScintillaConfig(IScintillaConfig config)
 {
     ScintillaPropertiesHelper.Populate(config, GetResource("global.properties"));
     return(true);
 }