mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-14 06:52:52 +03:00
ecode: Added codicon to support completion symbols icons.
Improved auto-complete plugin and several fixes. Implementing signature help.
This commit is contained in:
@@ -22,11 +22,11 @@ namespace ecode {
|
||||
#define FORMATTER_THREADED 0
|
||||
#endif
|
||||
|
||||
UICodeEditorPlugin* FormatterPlugin::New( const PluginManager* pluginManager ) {
|
||||
UICodeEditorPlugin* FormatterPlugin::New( PluginManager* pluginManager ) {
|
||||
return eeNew( FormatterPlugin, ( pluginManager ) );
|
||||
}
|
||||
|
||||
FormatterPlugin::FormatterPlugin( const PluginManager* pluginManager ) :
|
||||
FormatterPlugin::FormatterPlugin( PluginManager* pluginManager ) :
|
||||
mPool( pluginManager->getThreadPool() ) {
|
||||
#if FORMATTER_THREADED
|
||||
mPool->run( [&, pluginManager] { load( pluginManager ); }, [] {} );
|
||||
@@ -183,7 +183,7 @@ void FormatterPlugin::loadFormatterConfig( const std::string& path ) {
|
||||
}
|
||||
}
|
||||
|
||||
void FormatterPlugin::load( const PluginManager* pluginManager ) {
|
||||
void FormatterPlugin::load( PluginManager* pluginManager ) {
|
||||
registerNativeFormatters();
|
||||
|
||||
std::vector<std::string> paths;
|
||||
|
||||
Reference in New Issue
Block a user