I am running Python3 in Atom on MacOS. Inside Atom, I can run the Hydrogen package and I can use toggle-inspector to pull up the docstrings for some functions (like sorted and enumerate) but for many other built in and imported functions, like append
and insert
, I get a No Introspection Available
error. The functions for which doc strings are available all seem to be colored aquamarine while all other functions are colored blue. How do I get docstrings for all functions?
Note: I added this to my keymap.cson but I still get the same error
'atom-text-editor:not([mini])':
'shift-tab': 'hydrogen:toggle-inspector'