Sublime Forum

Trying to imitate behavior I saw in a video

#1

I saw a python video in which someone had their interpreter set up so that when they typed def it autofilled to

def function():
    pass

Is this a package, or what?
The video is here https://youtu.be/x1XZ9d6qrV0?t=6m30s, behavior I’m looking for is at 6:30.

0 Likes

#2

That’s a built-in Python snippet (“function.sublime-snippet”). In general you should be able to type “def” and then Tab to trigger it, but the exact behaviour depends on your various “auto_complete_” preferences.

0 Likes

#3

Thanks. Didn’t know that. That’s what I wanted. Tab it is.

0 Likes

#4

See also docs.sublimetext.info/en/latest/ … ppets.html

0 Likes