Sublime Forum

Custom Language - Intelli Sense

#1

Hi,

I would like to implement/configure an intelli sense for a new language.

There function names are numbers and the separators are pipes.

For example:
1524|“test”|233|“txt”

Now I would like to have sublimetext 3 to tell me via an intelli sense like popup when my cursor is on for example “233”
"function 1524: read line
Parameters: filename|lines|file extension
"
Is there any simple example? The functions are all hardcoded so these function informations could be set hardly.

Regards,

Markus

0 Likes

#2

You could try https://packagecontrol.io/packages/Intellitip as a starting point. It uses JSON files to store function information and renders such popups.

1 Like

#3

Hi,

yes. Very good starting point. Thanks.
That was what I was searching for.

0 Likes