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 |
export type BreakpointName = "sm" | "md" | "lg" | "xl" | "2xl"; | |
export const breakpointNames: BreakpointName[] = ["sm", "md", "lg", "xl", "2xl"]; | |
const pxRegex = /^(\d+)\s*(?:px)?$/i; | |
const remRegex = /^(\d+)\s*(?:rem)/i; | |
export interface Breakpoint { | |
name: BreakpointName; |
export type BreakpointName = "sm" | "md" | "lg" | "xl" | "2xl"; | |
export const breakpointNames: BreakpointName[] = ["sm", "md", "lg", "xl", "2xl"]; | |
const pxRegex = /^(\d+)\s*(?:px)?$/i; | |
const remRegex = /^(\d+)\s*(?:rem)/i; | |
export interface Breakpoint { | |
name: BreakpointName; |
module.exports = { | |
root: true, | |
overrides: [ | |
{ | |
files: ["*.ts", "*.svelte"], | |
parser: "@typescript-eslint/parser", | |
plugins: ["svelte3", "@typescript-eslint"], | |
settings: { | |
"svelte3/typescript": () => require("typescript"), | |
}, |
export type SvelteComponentConstructorOptions<T> = T extends abstract new ( | |
opts: Svelte2TsxComponentConstructorParameters<infer P>, | |
) => any | |
? Svelte2TsxComponentConstructorParameters<P> | |
: never; | |
export type SvelteComponentProps<T> = T extends abstract new ( | |
opts: Svelte2TsxComponentConstructorParameters<infer P>, | |
) => any | |
? Svelte2TsxComponentConstructorParameters<P>["props"] |
const authMachine = Machine( | |
{ | |
id: "auth", | |
initial: "initializing", | |
context: { | |
retries: 0, | |
user: undefined, | |
lastUpdated: undefined, | |
}, |
{ | |
"categories": { | |
"form": { | |
"description": "Form-associated content is a subset of flow content comprising elements that have a form owner, exposed by a form attribute, and can be used everywhere flow content is expected. A form owner is either the containing <form> element or the element whose id is specified in the form attribute.", | |
"documentation": "https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Content_categories#form-associated_content", | |
"elements": [ | |
"button", | |
"fieldset", | |
"input", | |
"label", |
package genproto | |
import ( | |
"github.com/golang/protobuf/proto" | |
"github.com/golang/protobuf/protoc-gen-go/descriptor" | |
pgs "github.com/lyft/protoc-gen-star" | |
) | |
// Enum describes an enumeration type. Its parent can be either a Message or a |
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
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 |
fieldset#account | |
legend Account Settings | |
ul | |
li#email | |
label | |
span.required * | |
input(type='text', name='account[email]') | |
li#password | |
label |