Bart Schuurmans

Results 71 comments of Bart Schuurmans

Interesting, on my machine (Ubuntu 20.04), zsh does not source `/etc/profile` at all: ``` $ zsh -o sourcetrace -l +/etc/zsh/zshenv:1> +/etc/zsh/zprofile:1> +/home/minnozz/.zprofile:1> +/home/minnozz/.config/config_dir/profile:1> +/etc/zsh/zshrc:1> +/home/minnozz/.zcompdump:1> +/home/minnozz/.zshrc:1> (...) ``` (I use...

Re `CocInstall`: this is because the install commands are executed asynchronously and vim exits immediately after they are started.

I tried [using a package manager](https://github.com/neoclide/coc.nvim/wiki/Using-coc-extensions#use-vims-plugin-manager-for-coc-extension) (vim-pack) to install the coc extensions, but this means that you have to build each extension yourself. I switched to using `CocInstall`, but I...

Tip: `g:coc_global_extensions`

Hi @dandavison, let me know if you need more information.

I've done some experimenting, and unfortunately it seems like there is no good key combination available. Without a custom event handler: - `Alt+2` results in `€` - `Alt+Fn+2` results in...

> Need to resolve pinned dependencies. They are currently specified in `bs-dependencies`. Is `workspaces` in `package.json` equivalent? See this repository (note the branch) for a minimal example of workspaces: https://github.com/Minnozz/rescript-reproduce-issue/tree/pinned-dependencies-issue

Can confirm that this only sometimes causes a build failure, even when building in a sandboxed CI environment without cache, which makes it hard to discover. Maybe there is a...

[This section of the docs states](https://rescript-lang.org/docs/manual/latest/build-pinned-dependencies#yarn-workspaces): > Important: ReScript will not rebuild any pinned-dependencies in watch mode! This is due to the complexity of file watching, so you'd need to...

This is mentioned in the changelog for 10.0.0-beta.3; has this already been completed?