Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| .wrong-triangle { | |
| content: ""; | |
| width: 0; | |
| height: 0; | |
| border-top: 5px solid transparent; | |
| border-right: 5px solid transparent; | |
| border-bottom: 5px solid black; | |
| border-left: 5px solid transparent; | |
| } | |
| .right-triangle { |
| # editorconfig.org | |
| root = true | |
| # TODOS OS ARQUIVOS | |
| [*] | |
| indent_style = tab | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
| { | |
| "files": | |
| { | |
| "bootstrap_js_input": "http://gregpike.net/demos/bootstrap-file-input/bootstrap.file-input.js", | |
| "css_960_fix": "http://grids.heroku.com/grid.css?column_width=60&column_amount=12&gutter_width=20", | |
| "css_960_fluid": "http://grids.heroku.com/fluid_grid.css?column_amount=12", | |
| "css_adapt_1200": "http://adapt.960.gs/assets/css/1200.css", | |
| "css_adapt_1560": "http://adapt.960.gs/assets/css/1560.css", | |
| "css_adapt_1920": "http://adapt.960.gs/assets/css/1920.css", | |
| "css_adapt_2520": "http://adapt.960.gs/assets/css/2520.css", |
| h1. Sublime Text 2 - Useful Shortcuts (PC) | |
| Loosely ordered with the commands I use most towards the top. Sublime also offer "full documentation":http://www.sublimetext.com/docs/2/. | |
| h2. Editing | |
| | *Ctrl+C* | copy current line (if no selection) | | |
| | *Ctrl+X* | cut current line (if no selection) | | |
| | *Ctrl+⇧+K*| delete line | | |
| | *Ctrl+↩* | insert line after | |
| // ---------------------------------------------------------- | |
| // A short snippet for detecting versions of IE in JavaScript | |
| // without resorting to user-agent sniffing | |
| // ---------------------------------------------------------- | |
| // If you're not in IE (or IE version is less than 5) then: | |
| // ie === undefined | |
| // If you're in IE (>=5) then you can determine which version: | |
| // ie === 7; // IE7 | |
| // Thus, to detect IE: | |
| // if (ie) {} |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Document</title> | |
| <link rel="stylesheet" href="estilo.css" /> | |
| </head> | |
| <body> | |
| </body> |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| (function() { | |
| var script, | |
| scripts = document.getElementsByTagName('script')[0]; | |
| function load(url) { | |
| script = document.createElement('script'); | |
| script.async = true; | |
| script.src = url; | |
| scripts.parentNode.insertBefore(script, scripts); |