Sublime Text: Difference between revisions

From Wiki
Jump to navigation Jump to search
No edit summary
Line 45: Line 45:
== Package Control ==
== Package Control ==
https://sublime.wbond.net/
https://sublime.wbond.net/
Hint: ''Ctrl+Shift+P install ...''

Revision as of 22:23, 27 February 2014

http://www.sublimetext.com/docs/3/index.html


Moving around

Moving the cursor

  • to beginning/end of current word: Ctrl-left/Ctrl-right

Moving the view

  • up/down: Ctrl-up/Ctrl-down

Incremental Search

  • Ctrl-I

Go to Anything

  • Go to File (in project): Ctrl-P, type to fuzzy-search
  • Go to Method (Code Outline): Ctrl-R to show code outline, type to fuzzy-search
  • Go to Method in File: Ctrl-P, search for file, type "@", then search for method


Selecting

Column Select

  • Shift + right-click + drag

Select instances of a word (multiple cursors)

  • Ctrl-D to select current and next instances of word
  • Ctrl-U to undo last
  • Alt+F3 to select all occurrences


Tools

  • Command Pallette: Ctrl+Shift+P, type to fuzzy-search


Projects

http://www.sublimetext.com/docs/3/projects.html

Assume you've got a folder full of code called myproject. Go to Project -> Save Project As... and save the project just inside that folder. This will create myproject.sublime-project and myproject.sublime-workspace files. As a general rule, the sublime-project file would be checked into version control, while the sublime-workspace file would not.

Add subfolders to the project with Project -> Add Folder to Project...


Package Control

https://sublime.wbond.net/

Hint: Ctrl+Shift+P install ...