Skip to content

Fuzzymodal loads very slow. Set a limit! #20

@zsviczian

Description

@zsviczian

To improve the performance of FuzzyModal drastically make the following change in code. Currently, with all fonts turned on icons search opens painfully slow.

Change this:

constructor(app: App, plugin: IconsPlugin, settings: IconsPluginSettings) {
super(app)
this.plugin = plugin
this.settings = settings
}

To this:

 constructor(app: App, plugin: IconsPlugin, settings: IconsPluginSettings) { 
   super(app) 
   this.limit = 20;
   this.plugin = plugin 
   this.settings = settings 
 } 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions