Sublime Forum

How I Can find plugins functions definition

#1

I want to know some sublime builtin or plugins defined functions signature。but Im new to sublime。

0 Likes

#2

Using the View Package Resource command from the command palette and searching for Default/py lets you view all default plugins.

0 Likes

#3

I wan`t know some where can list all functions doc just like emacs。

0 Likes

#4

You can find the API reference in our documentation: https://www.sublimetext.com/docs/.

0 Likes

#5

And if you prefer reading actual codes, you can do the following in ST console.

from pathlib import Path; window.run_command('open_dir', {'dir': str(Path(sublime.executable_path()).parent / 'Lib/python38')})

It will open the directory which contains the actual .py files.

1 Like