Googled and also searched in this forum but was not able to locate what i was looking for so decided to ask if anyone knows or have recommendation before i start building plugin for this.
I have C/C++.chm which I use to lookup functions that I wish to use but generally I often have to dig in the document to look for specific function which I would like to use. so i have my own code reference list like below in separate file.
=============================
example file of personal code reference list
Ref
… - Data Types
… - int
… - double
… - float
… - {continue}
… + Pre-Processors
… - Functions
… - Lists
… - pop_back
… - pop_front
… - {continue}
… + Math
… + {continue}
wanted to import this file into Sublime Text somehow that i can navigate through available list quickly with the way i have created and when i select it, the item will be insert into the code that i am working in the Sublime Text.
one way that i can think how to achieve this is using snippet and navigate through command palette but command palette only show one level (no tree list) and need to insert the extra items from the list and delete every time.
there was side panel plugin for folder/file but maybe there is side panel function in Sublime Text that i can use to achieve this but have not found that i can show tree list like function to embed my reference list and insert the item into the code.
appreciated for any suggestion or help on this.
kind regards,