

I hope you find this useful.Curly brackets usually mean that they combine several things. f9 - do alphabetical order of selected lines.f6 - check spelling in selected language (it can require installation of language package).shift + alt + ↑, ↓ - each time after press ↑ or ↓ add cursor to line above or below current line.ctrl + shift + l - add cursor to the end of each selected line of code/text.ctrl + y - do one more time last action.ctrl + shift + z - redo your last change.ctrl + shift + p - command line and package installer.ctrl + p - quick-open files by name in your project (you can even search by first letters of each part of file name example: searching by mnf, and SublimeText will find my_new_file.txt).ctrl + shift + s - save as (you can choose new name for file).ctrl + shift + f - search in whole project (directory), you can also replace phrase in this project.ctrl + h - replace one phrase to another in current file.ctrl + shift + t - open last closed tab (just like in your browser).ctrl + t - replace letter in neighborhood.


ctrl + x - cut selected text or whole line (when text is not selected) to clipboard.ctrl + v - paste selected text or whole line from clipboard.ctrl + c - copy selected text to clipboard or when you have cursor in line without selected text copy whole line to clipboard.ctrl + d - select word (repeat select others occurrences in context for multiple editing).ctrl + alt + j - pretty JSON power by SublimePrettyJson.ctrl + j - join line below to the end of the current line.ctrl + shift + k - remove line (without adding to clipboard).ctrl + k + k - remove all next words (without adding to clipboard).ctrl + backspace - remove all words before (without adding to clipboard).ctrl + delete - remove all next words (without adding to clipboard).crtl + / - comment/un-comment line (it depends selected programming language).ctrl + shift + ↑, ↓ - switch lines in neighborhood, first line goes up, second goes down.ctrl + ↑, ↓ - move file up/down by one line (like scroll).ctrl + shift + tab - previous used tab/file open in one panel.ctrl + tab - next used tab/file open in one panel.ctrl + PgUp, PgDn - go to previous/next open tab (file).ctrl + shift + m - select all contents of the current brackets (curly brackets, square brackets, parentheses).
CURLY BRACKETS TEXT EDITOR CODE
CURLY BRACKETS TEXT EDITOR INSTALL
Colorful syntax - you can add colors for different programming language syntax, when you don’t have specific colorization just install it.Linters (Coffee Script, CSS, Sass, JS) - tools which shows good practices in different languages.Sublime RuboCop - to show good practices in Ruby.SublimePrettyJson - formatter for JSON, this is very useful when you have JSON in one line and you would like to read it easly.To get more details about git I recommend to you my git series. Git Gutter - to show which part of code changed.BracketHighlighter - to show you where you start and end brackets, this is nice especially when you have programming language like JavaScript.Emmet - for fast and easy creation of HTML or CSS.You can look at some of my favorites packages:

If you like you can extend SublimeText behaviors by installing new packages. I recommend also to go through other setups in the Preferences menu. There is everything you will need for customization. You just go to the menu Preferences -> Settings. In my SublimeText editor, I like to have two open files. To use basic SublimeText splitting panels functionality, you just go to the menu View -> Layout and you can choose which layout you like. If you add Origami plugin, you can have event more then 4 panels. SublimeText has the option to see more than one file at the same time. There are lots of useful shortcuts, snippets, and plugins that allow me, in a fast and easy way, to work with code or simple text. Some people like Vim, some people like Notepad++ and I love Sublime Text. I think almost every programmer has his own favorite text editor.
