- Brad Taylor ([email protected])
- 4th release: April 23rd, 2004
- Thanks to the NES community. http://nesdev.parodius.com.
- recommended literature: 2A03/2C02/FDS technical reference documents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function peco-repos() { | |
local input | |
input="$(find "$GOPATH/src" -maxdepth 3 -mindepth 3 -name "*" -type d)" | |
input="${input}\n$(ghq list | sed "s#^#$(ghq root)/#")" | |
input="${input}\n$(ls -1 -d "$HOME/.vim/bundle/"*)" | |
input="${input}\n$(ls -1 -d "$HOME/.cache/dein/repos/"*)" | |
input="$(echo "$input" | sed "s#^$HOME#~#g")" | |
local selected_dir=$(echo "${input}" | peco --prompt 'repos >' --query "$LBUFFER") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/target/elc.c b/target/elc.c | |
index 80b08c9..030a5f8 100644 | |
--- a/target/elc.c | |
+++ b/target/elc.c | |
@@ -12,6 +12,7 @@ void target_js(Module* module); | |
void target_php(Module* module); | |
void target_el(Module* module); | |
void target_vim(Module* module); | |
+void target_viml(Module* module); | |
void target_tex(Module* module); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://wicg.github.io/IntersectionObserver/#intersection-observer-private-slots | |
/* | |
callback IntersectionObserverCallback = void (sequence<IntersectionObserverEntry> entries, IntersectionObserver observer) | |
[Constructor(IntersectionObserverCallback callback, optional IntersectionObserverInit options), | |
Exposed=Window] | |
interface IntersectionObserver { | |
readonly attribute Element? root; | |
readonly attribute DOMString rootMargin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="node" /> | |
import * as stream from 'stream'; | |
export declare default function hogehoge(): stream.Transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! s:fold(list, init, pred) abort | |
let acc = a:init | |
for item in a:list | |
let acc = a:pred(acc, item) | |
endfor | |
return acc | |
endfunction | |
echo s:fold([1, 2, 3, 4, 5], 0, {acc, i -> acc + i}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -441,7 +443,15 @@ noremap gm m | |
"Esc->Escで検索結果とエラーハイライトをクリア | |
nnoremap <silent><Esc><Esc> :<C-u>nohlsearch<CR> | |
"{数値}<Tab>でその行へ移動.それ以外だと通常の<Tab>の動きに | |
-noremap <expr><Tab> v:count != 0 ? "G" : "\<Tab>zvzz" | |
+function! s:go_to_line(lnum) abort | |
+ set number | |
+ augroup vimrc-go-to-line | |
+ autocmd! | |
+ autocmd InsertEnter,CursorHold * set nonumber | autocmd! vimrc-go-to-line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Declaration file generated by dts-gen */ | |
export = tmp; | |
declare const tmp: { | |
children: { | |
children: { | |
data: { | |
hChildren: { | |
properties: { | |
className: string[]; |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "root", | |
"children": [ | |
{ | |
"type": "heading", | |
"depth": 1, | |
"children": [ | |
{ | |
"type": "link", | |
"url": "#this-is-test-for-markdown-text", |