Mac uses sublime text stuck solution, with common shortcut keys

When using sublime text on mac, it always freezes. For example, select a piece of text to copy, and then do other things. When you come back and click on the blank space to cancel the selection of the text, you can't cancel it after many clicks.
For another example, modifying the tab format is also changing and getting stuck.
The solution is also very simple, open the sublime text configuration file, then find "index_files", and change the value to false:
configuration file

Commonly used shortcut keys are as follows:

Format JSON (Pretty JSON): command + option + J
Minimize JSON (Pretty JSON): command + option + M
Multi-line integration: command + shift + J

Insert line below: command + enter Insert line
above: command + shift + enter
Move line up/down: control + command + ⬆/⬇
Left/Right Indent: command + [/]

Move to the beginning/end of the text: command + ⬆/⬇
Move to the beginning/end of the line: command + ⬅/➡
Move a word: option + ⬅/➡
Select the current word: command + D
to find the next: command + G
to find the previous One: command+shift+G
Find: command+F
Replace: option+command+F
Multi-file find/replace: command+shift+F

Multi-line editing: select multiple lines, command + shift + L
to jump to the matching brackets: control + M
to select the content inside the brackets: control + shift + M

Open a recent file: command + P
to bring up the command palette: command + shift + P
to bring up the console: control + `

Close a window: command + W
Restore a just closed window: command + shift + T
Create a new tab: command + N

Guess you like

Origin blog.csdn.net/qq_34972627/article/details/129265945