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://github.com/vim/vim/pull/10025 | |
-------------- | |
==== start log session ==== | |
0.057482 : raw terminal output: "[?1049h[22;0;0t[>4;2m[?1h=[?2004h[?1004h" | |
0.057531 : raw terminal output: "[1;34r[?12h[?12l[22;2t" | |
0.124131 : raw terminal output: "[2;1H▽[6n" | |
0.124184 : raw terminal output: "[2;1H [3;1HPzz\[0%m[6n" |
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
``` | |
Sun 07 Feb 2021 05:23:29 PM UTC:["<---",1,"rust-analyzer",{"response":{"method":"$/progress","jsonrpc":"2.0","params":{"token":"rustAnalyzer/indexing","value":{"percentage":0,"message":"1/909 (alloc)","kind":"report"}}}}] | |
Sun 07 Feb 2021 05:23:29 PM UTC:["<---",1,"rust-analyzer",{"response":{"method":"$/progress","jsonrpc":"2.0","params":{"token":"rustAnalyzer/indexing","value":{"percentage":0,"message":"3/909 (panic_unwind)","kind":"report"}}}}] | |
Sun 07 Feb 2021 05:23:29 PM UTC:["<---",1,"rust-analyzer",{"response":{"method":"$/progress","jsonrpc":"2.0","params":{"token":"rustAnalyzer/indexing","value":{"percentage":0,"message":"4/909 (profiler_builtins)","kind":"report"}}}}] | |
Sun 07 Feb 2021 05:23:29 PM UTC:["<---",1,"rust-analyzer",{"response":{"method":"$/progress","jsonrpc":"2.0","params":{"token":"rustAnalyzer/indexing","value":{"percentage":0,"message":"5/909 (proc_macro)","kind":"report"}}}}] | |
Sun 07 Feb 2021 05:23:29 PM UTC:["<---",1,"rust-analyzer",{"response":{"method":"$/progress","jsonrpc":"2.0 |
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
# Final binary | |
BIN = $(shell basename $$(pwd)) | |
ifeq ($(OS),Windows_NT) | |
EXE+=.exe | |
endif | |
# Default to build with multiple instances for speed | |
MAKEFLAGS =+ -j | |
# VERSION = 0.1 |
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
DEBUG --> { method: 'initialize', | |
jsonrpc: '2.0', | |
id: 1, | |
params: | |
{ rootUri: 'file:///D:/tmp/flow-helloworld', | |
capabilities: {}, | |
rootPath: 'file:///D:/tmp/flow-helloworld' } } | |
DEBUG <-- { jsonrpc: '2.0', | |
method: '$/partialResult', | |
params: |
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
" save all the completions | |
let s:completions = [] | |
function! asyncomni#omnifunc(findstart, base) | |
if a:findstart | |
let l:line_string = getline('.') | |
let l:line = line('.') | |
let l:col = col('.') | |
" locate start of the word | |
let l:start = l:col -1 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>AAD Login</title> | |
</head> | |
<body> | |
<button id="login-button">Login</button> | |
<!-- https://apps.dev.microsoft.com/#/appList | |
https://dev.outlook.com/AppRegistration | |
https://account.live.com/consent/Manage |
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
" to use existing vim configuration as neovim configuration | |
" ln -s ~/.vimrc ~/.config/nvim/init.vim | |
let mapleader = ' ' | |
" vimrc {{{ | |
nnoremap <leader>ev :e $MYVIMRC<cr> | |
nnoremap <leader>sv :source $MYVIMRC<cr> | |
" }}} | |
let s:settings = {} |
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:Handler(handle, msg) | |
echom a:handle | |
echom a:msg | |
endfunction | |
let handle = ch_open('localhost:8000', {'mode': 'json'}) | |
call ch_sendexpr(handle, 'hello', function('s:Handler')) |
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
package main | |
import ( | |
"time" | |
"github.com/nsf/termbox-go" | |
) | |
type appState struct { | |
endEventLoop bool |
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
export function increment() { | |
return { | |
type: 'INCREMENT' | |
}; | |
} | |
function decrement() { | |
return { | |
type: 'DECREMENT' | |
}; |
NewerOlder