chrischen

Results 36 comments of chrischen

Hi guys just found you guys on Hacker News and I just happened to want to do piping and currying in python recently. Currently I just have my python LSP...

The last working revision was 31a95bf and on a6abe69 HMR stopped working. My system is macOS Mojave and tested with Chrome and Safari. After further debugging it seems 1) I...

> hey all! thanks for all the tips, I've gotten most of what I need. I'm just missing the `M-Backspace` behavior (delete word backward)... The key on Mac is called...

I did a fresh install, deleted .local/share/nvim/dein, and ran make. And nothing seems to be working. Find files binding not working, and Fern not working. Local leader and leader mapping...

I found the issue in line 48 of `general.vim` ``` if has('clipboard') && has('vim_starting') set clipboard& clipboard+=unnamedplus endif ``` Not sure why it causes the problem in vim8 but not...

Was able to fix by changing to ``` if has('clipboard') && has('vim_starting') set clipboard& clipboard^=unnamed,unnamedplus endif ``` Thanks to https://stackoverflow.com/questions/30691466/what-is-difference-between-vims-clipboard-unnamed-and-unnamedplus-settings. Works in both vim and neovim now. I will do...

So `stringD` is a decoder that can return the "NotString" error type only. If I compose the decoder so that some new decoder `stringD2` depends on `stringD` and refines it...

EDITED: Sorry forgot to save earlier. This one has the correct implementation. https://codesandbox.io/s/hungry-sky-7bx2r?file=/src/index.ts I can't seem to get the error to show in this, but it gives typescript error in...

So it seems like the reason codesandbox is not showing the TS error is because it's using an older version of typescript (not sure which version, but I downgraded to...

I just tried to reproduce in a clean project (with same compile settings for typescript) and the problem does not appear to exist. Currently investigating to see why the TS...