OLD | NEW |
1 # Linux Sublime Dev | 1 # Linux Sublime Dev |
2 | 2 |
3 Sublime Text is a fast, powerful and easily extensible code editor. Check out | 3 Sublime Text is a fast, powerful and easily extensible code editor. Check out |
4 some [visual demos](http://www.sublimetext.com) for a quick demonstration. | 4 some [visual demos](http://www.sublimetext.com) for a quick demonstration. |
5 | 5 |
6 You can download and install Sublime Text 3 from the [Sublime Text | 6 You can download and install Sublime Text 3 from the [Sublime Text |
7 Website](http://www.sublimetext.com/3). Assuming you have access to the right | 7 Website](http://www.sublimetext.com/3). Assuming you have access to the right |
8 repositories, you can also install Sublime via apt-get on Linux. Help and | 8 repositories, you can also install Sublime via apt-get on Linux. Help and |
9 general documentation is available in the [Sublime Text 3 | 9 general documentation is available in the [Sublime Text 3 |
10 Docs](http://www.sublimetext.com/docs/3/). | 10 Docs](http://www.sublimetext.com/docs/3/). |
11 | 11 |
12 Sublime can be used on Linux, Windows and Mac as an IDE for developing Chromium. | 12 Sublime can be used on Linux, Windows and Mac as an IDE for developing Chromium. |
13 Here's what works: | 13 Here's what works: |
14 | 14 |
15 * Editing code works well (especially if you're used to it and get used to the | 15 * Editing code works well (especially if you're used to it and get used to the |
16 shortcuts). | 16 shortcuts). |
17 * Navigating around the code works well. There are multiple ways to do this (a | 17 * Navigating around the code works well. There are multiple ways to do this (a |
18 full list of keyboard shortcuts is available for [Windows/Linux](http:// | 18 full list of keyboard shortcuts is available for [Windows/Linux](http://docs
.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html) |
19 docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html) and | 19 and [Mac](http://docs.sublimetext.info/en/latest/reference/keyboard_shortcut
s_osx.html)). |
20 [Mac](http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_os
x.html)). | |
21 * Building works fairly well and it does a decent job of parsing errors so | 20 * Building works fairly well and it does a decent job of parsing errors so |
22 that you can click and jump to the problem spot. | 21 that you can click and jump to the problem spot. |
23 | 22 |
24 [TOC] | 23 [TOC] |
25 | 24 |
26 ## Setup | 25 ## Setup |
27 | 26 |
28 ### Configuring Sublime | 27 ### Configuring Sublime |
29 | 28 |
30 All global configuration for Sublime (including installed packages) is stored in | 29 All global configuration for Sublime (including installed packages) is stored in |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion)
- | 574 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion)
- |
576 automatically changes the case of selected text, e.g. `kConstantName` to | 575 automatically changes the case of selected text, e.g. `kConstantName` to |
577 `CONSTANT_NAME` | 576 `CONSTANT_NAME` |
578 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) - | 577 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) - |
579 Inserts incremental number sequences with multi-select | 578 Inserts incremental number sequences with multi-select |
580 * [Wrap Plus](https://packagecontrol.io/packages/Wrap%20Plus) - Auto-wraps | 579 * [Wrap Plus](https://packagecontrol.io/packages/Wrap%20Plus) - Auto-wraps |
581 a comment block to 80 columns with `Alt + Q` (was used to write this | 580 a comment block to 80 columns with `Alt + Q` (was used to write this |
582 document! ;-) | 581 document! ;-) |
583 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files | 582 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files |
584 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences | 583 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences |
OLD | NEW |