Home > Development Tools > sublime > What to press after sublime input

What to press after sublime input

下次还敢
Release: 2024-04-03 18:42:14
Original
1367 people have browsed it

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:

  1. Open Sublime Text's "Preferences" file (Preferences > Settings-User)
  2. Add or modify the following code in the file:
<code>{
    "auto_complete": {
        "complete_on_dots": false,
        "auto_complete_commit_on_tab": true,
        "key": "ctrl+space"
    }
}</code>
Copy after login
  • "complete_on_dots": Controls whether auto-completion is triggered when the '.' character is entered (set to false to disable)
  • "auto_complete_commit_on_tab": Controls pressingTab Whether the key automatically submits auto-completion suggestions (set to true to enable)
  • "key": Specifies the keyboard shortcut that triggers auto-completion (for example, " ctrl space")

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Why doesn’t Sublime Text complete code?
From 1970-01-01 08:00:00
0
0
0
Installation of Sublime Text console failed
From 1970-01-01 08:00:00
0
0
0
Sublime configures PHP environment
From 1970-01-01 08:00:00
0
0
0
Sublime text 3 cannot install Emme?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template