I want to know some sublime builtin or plugins defined functions signature。but I
m new to sublime。
How I Can find plugins functions definition
Jidibinlin
#1
0 Likes
bschaaf
#2
Using the View Package Resource
command from the command palette and searching for Default/py
lets you view all default plugins.
0 Likes
bschaaf
#4
You can find the API reference in our documentation: https://www.sublimetext.com/docs/.
0 Likes
jfcherng
#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