I hereby claim:
- I am jssteinberg on github.
- I am johanland (https://keybase.io/johanland) on keybase.
- I have a public key ASA-ZavfgHF6mF1dZAs5Bh0sc3OZPfa4ySkjGhGN9omxcQo
To claim this, I am signing this object:
| " SPACE CONFIRMS - maps to cmdline that are confirmed with <space> | |
| " Setup: | |
| " <space> is enter key in command mode if space_confirms | |
| cno <expr> <space> exists("g:space_confirms") ? "<cr>" : " " | |
| " space_confirms is unlet by autocmd so it's deactivated | |
| augroup space_confirms | au! | |
| au CmdlineLeave * if exists("g:space_confirms") | unlet g:space_confirms | en | |
| augroup end |
| " search with s in normal and visual mode | |
| nnoremap s <cmd>let g:space_search=1<cr>/ | |
| xnoremap s <cmd>let g:space_search=1<cr>/ | |
| " backwards search with S in normal mode | |
| nnoremap S <cmd>let g:space_search=1<cr>? | |
| " in command mode, if space_search then <space> is <cr> | |
| cnoremap <expr> <space> exists("g:space_search") | |
| \ ? "<cr>" : " " | |
| " autocmd to unlet variable so space_search is deactivated | |
| augroup space_search | au! |
| # somedarkterm1 | |
| colors: | |
| # Default colors | |
| primary: | |
| background: '0x15151e' | |
| foreground: '0xc1c0d3' | |
| # Normal colors | |
| normal: | |
| black: '0x2d2c3f' |
| const newObj = ({param=`paramDefault`}) => Object.freeze({ | |
| param | |
| }); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Minimal HTML5 template</title> | |
| <main> | |
| <h1>Minimal HTML5 template</h1> | |
| <p>This is valid HTML5.</p> | |
| </main> |
| # LC/LANG: https://www.gnu.org/software/libc/manual/html_node/Locale-Categories.html | |
| # System avail: `locale -a` | |
| export LANG=en_US.UTF-8 | |
| export LC_COLLATE=no_NO.UTF-8 | |
| export LC_CTYPE=no_NO.UTF-8 | |
| # General | |
| setopt correctall # autocorrect commands | |
| setopt no_beep |
| <script context="module"> | |
| import { writable } from 'svelte/store'; | |
| /** @type {string} a11yTitle - A store to use for the title to announce on | |
| * route change for screen readers. */ | |
| export const a11yTitle = writable(''); | |
| </script> | |
| <script> | |
| import { stores } from '@sapper/app'; | |
| import { tick } from 'svelte'; |
| <script> | |
| import { onMount } from 'svelte'; | |
| /** @type {string} gtmId - GTM ID 'GTM-F00BARS'. */ | |
| export let gtmId = ''; | |
| /** @type {(Object[]|Object)} [gtmDataPoints=[]] - Array or single object of custom data points for dataLayer. | |
| * @type {Object} [gtmDataPoints[]] - Custom data point Object. | |
| * @type {string} [gtmDataPoints[][]] - Custom data point property. */ | |
| export let gtmDataPoints = []; | |
| /** @type {number} [timeout] - The number of milliseconds to timeout intiating loading the GTM script from Google */ |
I hereby claim:
To claim this, I am signing this object: