hexcowboy
hexcowboy
From https://github.com/preservim/nerdtree#how-can-i-open-nerdtree-automatically-when-vim-starts-up-on-opening-a-directory ```vim autocmd StdinReadPre * let s:std_in=1 autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe...
II am also getting the EOF error on macOS. ```bash $ migrate -verbose -source file://./migrations -database "postgresql://admin:pass@localhost:5432/dev?sslmode=disable" up 2021/09/23 17:26:03 error: EOF ```
I'm able to reproduce this issue easily without any plugins by just pressing `i` and `Esc` rapidly with `bindkey -v` enabled https://user-images.githubusercontent.com/8162609/180136144-aea422ea-14e3-4504-84e0-c7cf8c7f554c.mov
Leaving this here, the fix was simple. Disable OCSP. ```javascript user_pref("security.OCSP.enabled", 0); ``` _Note that NordVPN [does not use OCSP](https://www.reddit.com/r/VPN/comments/docm98/two_interesting_nordvpn_hack_details_nobody_talks/) which is a security vulnerability._
@chai2010
i can confirm i also ran into this bug
Fixed by adding this to `vite.config.ts` ```js export default defineConfig({ ... define: { "global": {}, }, }); ```
> @jamesjessian @hexcowboy [This](https://vitejs.dev/config/#define) page seems to indicate `global` should not be defined this way 🤔 . > > Any thoughts? Like this solution seemingly works locally, but I get...
> * Do your Macbooks have a notch by chance? yes, specifically the newest macbook air 13" *edit*: to clarify, the notch is not just hiding Clocker, the process is...
Also came here to argue in favor of this. additional context: https://github.com/gakonst/ethers-rs/issues/2175