View Single Post
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 06-17-2020 , 15:27   Re: [TUT] Compiling AMXX plugins with Sublime Text
Reply With Quote #204

That `generating syntax summary` is from Sublime Text. You can try disabling it by going to the menu `Preferences -> Settings` and setting `"index_files": false`

Alternatively, you can try to limit the number for CPU's Sublime Text will use to index files by setting `"index_workers": 1` instead of completely disabling the file indexing:
Code:
    // File indexing parses all files in the side bar, and builds an index of     // their symbols. This is required for Goto Definition to work.     "index_files": true,     // Set the number threads to use for indexing. A value of 0 will make     // Sublime Text guess based on the number of cores. Use the index_files     // setting to disable all workers.     "index_workers": 0,
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline