| 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://docs | 18 full list of keyboard shortcuts is available for [Windows/Linux](http:// |
| 19 .sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html) and | 19 docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.html) and |
| 20 [Mac](http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_os
x.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 | 21 * 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. | 22 that you can click and jump to the problem spot. |
| 23 | 23 |
| 24 [TOC] | 24 [TOC] |
| 25 | 25 |
| 26 ## Setup | 26 ## Setup |
| 27 | 27 |
| 28 ### Configuring Sublime | 28 ### Configuring Sublime |
| 29 | 29 |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 Adds more file management options to the sidebar context menu. | 562 Adds more file management options to the sidebar context menu. |
| 563 * [SyncedSidebarBg](https://packagecontrol.io/packages/SyncedSidebarBg) - | 563 * [SyncedSidebarBg](https://packagecontrol.io/packages/SyncedSidebarBg) - |
| 564 A purely aesthetic improvement that syncs the sidebar background with | 564 A purely aesthetic improvement that syncs the sidebar background with |
| 565 the background color for the current theme. | 565 the background color for the current theme. |
| 566 * [Theme - Soda](http://buymeasoda.github.io/soda-theme/) - A global theme | 566 * [Theme - Soda](http://buymeasoda.github.io/soda-theme/) - A global theme |
| 567 for Sublime that matches the default color scheme. Needs `"theme": "Soda | 567 for Sublime that matches the default color scheme. Needs `"theme": "Soda |
| 568 Light 3.sublime-theme"` in your Preferences > Settings - User` file. | 568 Light 3.sublime-theme"` in your Preferences > Settings - User` file. |
| 569 * Code navigation tools | 569 * Code navigation tools |
| 570 * [AutoFileName](https://packagecontrol.io/packages/AutoFileName) - Auto- | 570 * [AutoFileName](https://packagecontrol.io/packages/AutoFileName) - Auto- |
| 571 completes filenames in #includes | 571 completes filenames in #includes |
| 572 * [Open-Include](https://packagecontrol.io/packagenavigations/Open- | 572 * [Open-Include](https://packagecontrol.io/packagenavigations/Open-Include
) |
| 573 Include) - Opens the file path under the cursor with `Alt + D` | 573 - Opens the file path under the cursor with `Alt + D` |
| 574 * Text tools | 574 * Text tools |
| 575 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion)
- | 575 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion)
- |
| 576 automatically changes the case of selected text, e.g. `kConstantName` to | 576 automatically changes the case of selected text, e.g. `kConstantName` to |
| 577 `CONSTANT_NAME` | 577 `CONSTANT_NAME` |
| 578 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) - | 578 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) - |
| 579 Inserts incremental number sequences with multi-select | 579 Inserts incremental number sequences with multi-select |
| 580 * [Wrap Plus](https://packagecontrol.io/packages/Wrap%20Plus) - Auto-wraps | 580 * [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 | 581 a comment block to 80 columns with `Alt + Q` (was used to write this |
| 582 document! ;-) | 582 document! ;-) |
| 583 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files | 583 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files |
| 584 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences | 584 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences |
| OLD | NEW |