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 |
[ | |
{ | |
"backcolor": "#ffffff", | |
"name": "Sofle Colemak", | |
"author": "Matyas Vezer", | |
"pcb": true | |
}, | |
[ | |
{ | |
"y": 0.2, |
"use strict"; | |
import * as Promise from "bluebird"; | |
import { ReadLine, createInterface } from "readline"; | |
const readLine = createInterface({ | |
input: process.stdin, | |
output: process.stdout, | |
terminal: false | |
}); |
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 |