I hereby claim:
- I am lambdalisue on github.
- I am lambdalisue (https://keybase.io/lambdalisue) on keybase.
- I have a public key ASBZIH_RGffOoVv_5tfnY5LlFQR3vfTF19AiLk2543RStAo
To claim this, I am signing this object:
{ | |
"title": "Obsidian", | |
"rules": [ | |
{ | |
"description": "Send Escape twice on Escape", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ |
" https://github.com/esm7/obsidian-vimrc-support | |
nmap j gj | |
nmap k gk | |
nmap ; : | |
set clipboard=unnamed | |
" Enable Emacs-like mappings in Insert/Command Mode | |
" It seems simple mappings doesn't work in 'imap' so some workaround is |
import { exists } from "jsr:@std/fs"; | |
import { map, reduce } from "jsr:@core/iterutil"; | |
const sourceUrl = | |
"https://raw.githubusercontent.com/dwyl/english-words/master/words_alpha.txt"; | |
const filename = "words_alpha.txt"; | |
if (!(await exists(filename))) { | |
const resp = await fetch(sourceUrl); | |
await Deno.writeFile(filename, resp.body!); |
[exec] | |
inherit-env-vars = true | |
[exec.env-vars] | |
XDG_CONFIG_HOME = '${HOME}/.config' | |
#... | |
alt-period = '''exec-and-forget | |
aerospace layout floating \ |
import { walk } from "jsr:@std/fs/walk"; | |
const version = "^4.0.0"; | |
function migrate(text: string): string { | |
text = text.replace( | |
/import(\s+){(.*?)}(\s+)from(\s+)"jsr:@core\/unknownutil@\^?3.*?"/sg, | |
`import$1{$2}$3from$4"jsr:@core/unknownutil@${version}"`, | |
); | |
text = text.replace(/is\.RecordLike/g, "is.Record"); |
import sys | |
import os | |
import datetime | |
import pyauto | |
from keyhac import * | |
def configure(keymap): | |
# Setting with callable object (Advanced usage) |
javascript:(function() { | |
const t = document.querySelector('.c-MainLayout_Content article div'); | |
t.style.maxWidth = "none"; | |
t.style.width = "99%"; | |
}()) |
check() { | |
# -z: True when the string length is 0 | |
if [ -z $DUMMY ]; then | |
echo '-z $DUMMY' | |
fi | |
if [ -z "$DUMMY" ]; then | |
echo '-z "$DUMMY"' | |
fi | |
if [ -z "${DUMMY+xxx}" ]; then | |
echo '-z "${DUMMY+xxx}"' |
I hereby claim:
To claim this, I am signing this object:
<details open markdown="block"> | |
<summary>Table of contents</summary> | |
<ul> | |
<li> | |
<a href="#services">Services</a> | |
<ul> | |
{{- range .Files}}{{range .Services}} | |
<li><a href="#{{.FullName | lower | replace "." ""}}">{{.LongName}} (<code>{{.FullName}}</code>)</a></li> | |
{{- end}}{{end}} | |
</ul> |