Home >Development Tools >sublime >What to press after sublime input
What shortcut keys do you press after inputting in Sublime Text?
In the Sublime Text editor, after entering characters, pressing the Tab key will trigger automatic completion by default. Fully functional, i.e. displays a list of available variables, methods and keywords for selection.
Customize the auto-complete shortcut key:
You can customize the auto-complete shortcut key according to your own preferences:
<code>{ "auto_complete": { "complete_on_dots": false, "auto_complete_commit_on_tab": true, "key": "ctrl+space" } }</code>
According to your settings, after entering characters and pressing the specified shortcut key, the auto-complete function will be triggered.
The above is the detailed content of What to press after sublime input. For more information, please follow other related articles on the PHP Chinese website!