Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 552 Bytes

File metadata and controls

29 lines (27 loc) · 552 Bytes

Notes on Sublime Text

Shortcuts

  1. Move line up or down: Command + Control + up arrow/down arrow
  2. Place a cursor on every matched text from find: Option + Enter

User Preferences

Found in Preferences.sublime-settings -- User

{
	"auto_complete": true,
	"caret_style": "wide",
	"font_size": 15,
	"highlight_line": true,
	"ignored_packages":
	[
	],
	"line_padding_bottom": 1,
	"line_padding_top": 1,
	"rulers":
	[
		80
	],
	"show_definitions": false,
	"translate_tabs_to_spaces": true,
	"word_wrap": true,
	"wrap_width": 80
}