Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: docs/linux_sublime_dev.md

Issue 2706063006: Markdown formatting nit to fix a link in docs. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/).
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 { "keys": ["ctrl+shift+c"], "command": "clang_format" }, 245 { "keys": ["ctrl+shift+c"], "command": "clang_format" },
246 ] 246 ]
247 ``` 247 ```
248 248
249 2. Select some text and press `Ctrl + Shift + C` to format, or select no text to 249 2. Select some text and press `Ctrl + Shift + C` to format, or select no text to
250 format the entire file 250 format the entire file
251 251
252 ## CodeSearch Integration with Chromium X-Refs 252 ## CodeSearch Integration with Chromium X-Refs
253 253
254 With [Chromium X-Refs](https://github.com/karlinjf/ChromiumXRefs/) you can 254 With [Chromium X-Refs](https://github.com/karlinjf/ChromiumXRefs/) you can
255 perform [https://cs.chromium.org](https://cs.chromium.org] cross-reference 255 perform [https://cs.chromium.org](https://cs.chromium.org) cross-reference
256 searches in your editor. This gives you the call graph, overrides, references, 256 searches in your editor. This gives you the call graph, overrides, references,
257 declaration, and definition of most of the code. The results are as fresh as 257 declaration, and definition of most of the code. The results are as fresh as
258 the search engine's index so uncomitted changes won't be reflected. 258 the search engine's index so uncomitted changes won't be reflected.
259 259
260 More information on Chromium X-Ref's functionality (including keyboard and 260 More information on Chromium X-Ref's functionality (including keyboard and
261 mouse shortcuts) can be found on the [Chromium X-Refs 261 mouse shortcuts) can be found on the [Chromium X-Refs
262 page](https://github.com/karlinjf/ChromiumXRefs/). 262 page](https://github.com/karlinjf/ChromiumXRefs/).
263 263
264 264
265 ## Code Completion with SublimeClang (Linux Only) 265 ## Code Completion with SublimeClang (Linux Only)
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion) - 590 * [Case Conversion](https://packagecontrol.io/packages/Case%20Conversion) -
591 automatically changes the case of selected text, e.g. `kConstantName` to 591 automatically changes the case of selected text, e.g. `kConstantName` to
592 `CONSTANT_NAME` 592 `CONSTANT_NAME`
593 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) - 593 * [Text Pastry](https://packagecontrol.io/packages/Text%20Pastry) -
594 Inserts incremental number sequences with multi-select 594 Inserts incremental number sequences with multi-select
595 * [Wrap Plus](https://packagecontrol.io/packages/Wrap%20Plus) - Auto-wraps 595 * [Wrap Plus](https://packagecontrol.io/packages/Wrap%20Plus) - Auto-wraps
596 a comment block to 80 columns with `Alt + Q` (was used to write this 596 a comment block to 80 columns with `Alt + Q` (was used to write this
597 document! ;-) 597 document! ;-)
598 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files 598 * [Diffy](https://packagecontrol.io/packages/Diffy) - With two files
599 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences 599 opened side-by-side, `Ctrl + k Ctrl + d` will show the differences
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698