Collection of snippets for use in Alfred 3
Snippet collection of the Git commands I most frequently use. Note: does not use prefix.
Includes:
Keyword | Snippet |
---|---|
gstat | git status |
gadd | git add . |
gcheck | git checkout |
gmerge | git merge |
gpush | git push |
gpull | git pull |
gcommit | git commit -m "{cursor}" |
Just a few HTML-related shortcuts. All keywords prefixed with !
.
Keyword | Snippet |
---|---|
!h5 | Skeleton HTML document structure |
!icon | Snippet for Font Awesome icon |
!docready | Wrapper function for document ready |
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
</head>
<body>
<p>Hello world! This is HTML5 Boilerplate.</p>
</body>
</html>
<span class="fa " aria-hidden="true"></span>
console.log( "ready!" );
});
© by Tim White, 2019