Erik Lilja

Results 61 comments of Erik Lilja

I also have this issue. I created this gif to show what I'm experiencing. Please excuse the quality. ![2021-01-09 19-37-10](https://user-images.githubusercontent.com/6134511/104105969-62ca1800-52b2-11eb-9421-50be6c32f71e.gif) (`,jo` is how i enter goyo-mode) This is Git bash...

Might be a problem with [junegunn/limelight](https://github.com/junegunn/limelight.vim) actually... Try this vimrc: ```vim set nocompatible set t_Co=256 " Added this

ping @dahlia

@dahlia can this please be my christmas present? 🙏

> But are you imagining cases where there's no system-wide install of python & coverage, or what? Yes: ![image](https://user-images.githubusercontent.com/6134511/134519396-bc4ec2fe-4d5e-455c-8ab7-d93b11549da1.png)

I think `poetry run ` is just syntax sugar for `source ~/some/venv/in/a/folder/near/you/activate && `. As a side note, I've recently began using [coc.nvim](https://github.com/neoclide/coc.nvim) and [coc-pyright](https://github.com/fannheyward/coc-pyright) which is a LSP that...

Update to latest lsp-config and updated volar. Now seems to be working.

> If we simply add a flag that allows module resolution to work with .ts files, it will 100% contribute to the misconception that TypeScript does, can, or should emit...

Removing `ref()` from the `new Bus()` call removes the side effect. Here is the class for reference: ```typescript enum Events { NewDataRequest = "newDataRequest" } export class Bus { constructor()...

Also very interested in this. I created my nuxt app with nuxt/content, generated and shipped the public folder to a CDN. The result when peeking into the browser console: ```...