Sublime Text: Difference between revisions
Line 211: | Line 211: | ||
|} | |} | ||
|} | |} | ||
== Descriptions == | |||
{| class="wikitableharm" width="1200" | |||
|- style="vertical-align:top;" | |||
| width="400" | '''Command Palette'''<br> | |||
The Command Palette holds infrequently used functionality, like sorting, changing the syntax and changing the indentation settings. | |||
With just a few keystrokes, you can search for what you want, without ever having to navigate through the menus or remember obscure key bindings. | |||
<br>Show the Command Palette with ⌘⇧P. | |||
| width="400" | '''Goto Anything''' <br> | |||
Use Goto Anything to open files with only a few keystrokes, and instantly jump to symbols, lines or words. | |||
<br>Triggered with ⌘P, it is possible to: | |||
* Type part of a file name to open it. | |||
* Type @ to jump to symbols, | |||
* Type # to search within the file, | |||
* Type : to go to a line number. | |||
These shortcuts can be combined, so tp@rf may take you to a function read_file within a file text_parser.py. | |||
<br>Similarly, tp:100 would take you to line 100 of the same file. | |||
| width="400" | '''Split Editing''' <br> | |||
Get the most out of your wide screen monitor with split editing support. Edit files side by side, or edit two locations in the one file. You can edit with as many rows and columns as you wish. | |||
<br>Take advantage of multiple monitors by editing with multiple windows, and using multiple splits in each window. | |||
* Take a look at the {{FormFCTW|8|blue|bold|View}}→ {{FormFCTW|8|blue|bold|Layout}} menu for split editing options. | |||
* To open multiple views into the one file, use the {{FormFCTW|8|blue|bold|File}}→{{FormFCTW|8|blue|bold|New View}} into File menu item. | |||
|- style="vertical-align:top;" | |||
| width="400" | '''Multiple Selections'''<br> | |||
Make ten changes at the same time, not one change ten times. Multiple selections allow you to interactively change many lines at once, rename variables with ease, and manipulate files faster than ever. | |||
* Try pressing ⇧⌘L to split the selection into lines | |||
* ⌘D to select the next occurrence of the selected word. | |||
* To make multiple selections with the mouse, take a look at the {{FormFCTW|8|blue|bold|Column Selection}} documentation. | |||
| width="400" | '''Distraction Free Mode'''<br> | |||
When you need to focus, Distraction Free Mode is there to help you out. Distraction Free Mode is full screen, chrome free editing, with nothing but your text in the center of the screen. | |||
<br>You can incrementally show elements of the UI, such as tabs and the find panel, as you need them. | |||
* You can enter Distraction Free Mode using the {{FormFCTW|8|blue|bold|View}}→{{FormFCTW|8|blue|bold|Enter Distraction Free Mode}} menu. | |||
| width="400" | '''Instant Project Switch'''<br> | |||
Projects in Sublime Text capture the full contents of the workspace, including modified and unsaved files. | |||
You can switch between projects in a manner similar to Goto Anything, and the switch is instant, with no save prompts - all your modifications will be restored next time the project is opened. | |||
|} | |||
== See also == | == See also == |
Revision as of 08:08, 28 August 2016
Sublime Text is a sophisticated text editor for code, markup and prose. You'll love the slick user interface, extraordinary features and amazing performance. First of all Sublime Text is multi-platform, so available for OS X, Windows and Linux.
Keyboard shortcuts
The keyboard shortcuts for OSX are base on the Websites:
- Docs Sublime Text Info, Keyboard Shortcuts for OSX.
|
|
|
Descriptions
Command Palette The Command Palette holds infrequently used functionality, like sorting, changing the syntax and changing the indentation settings.
With just a few keystrokes, you can search for what you want, without ever having to navigate through the menus or remember obscure key bindings.
|
Goto Anything Use Goto Anything to open files with only a few keystrokes, and instantly jump to symbols, lines or words.
These shortcuts can be combined, so tp@rf may take you to a function read_file within a file text_parser.py.
|
Split Editing Get the most out of your wide screen monitor with split editing support. Edit files side by side, or edit two locations in the one file. You can edit with as many rows and columns as you wish.
|
Multiple Selections Make ten changes at the same time, not one change ten times. Multiple selections allow you to interactively change many lines at once, rename variables with ease, and manipulate files faster than ever.
|
Distraction Free Mode When you need to focus, Distraction Free Mode is there to help you out. Distraction Free Mode is full screen, chrome free editing, with nothing but your text in the center of the screen.
|
Instant Project Switch Projects in Sublime Text capture the full contents of the workspace, including modified and unsaved files. You can switch between projects in a manner similar to Goto Anything, and the switch is instant, with no save prompts - all your modifications will be restored next time the project is opened. |