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 |
| lkjlkjlkjlkj |
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 |
| /* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011 | |
| * http://benalman.com/ | |
| * Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */ | |
| (function($) { | |
| var o = $({}); | |
| $.subscribe = function() { | |
| o.on.apply(o, arguments); |
| #~/.local/share/applications/mimeapps.list | |
| [Added Associations] | |
| #... | |
| x-scheme-handler/subl=subl-urlhandler.desktop |
| window.raises = function(fn, msg) { | |
| try { | |
| fn(); | |
| ok(false, msg ? msg : '') | |
| } catch(e) { | |
| ok(e.name === "AssertError" ? false : true, msg ? msg : ''); | |
| } | |
| }; |