Rustam

Results 17 comments of Rustam

I often need this when I want to do some cleanup and refactoring before sending my PR for review or just want to see all my changes while continuing working...

Can confirm. I'm getting over 1.2GB of memory usage

Same issue. I'm using latest `[email protected]`, `[email protected]` and `[email protected]` with **WezTerm** terminal. Workarounds mentioned above didn't help unfortunately. ``` ctrl + cmd - t : /Applications/WezTerm.app/Contents/MacOS/wezterm start ```

@janpio Here's a repro: https://github.com/frixaco/test-prisma-edge-nextjs It's a simple Next.js (App Router) setup with Prisma. Error happens when using Edge client for me, running `pnpm build`.

I have the same issue as @yrebrac - running `llm` inside WSL. It's happening only with `llm`, I don't have any issues using OpenAI/Anthropic SDKs.

@zachbharris THANK YOU, man. I almost gave up on using Neovim for Astro. (based pfp btw)

@AlejandroSanchez90 You can try wrapping the `try_lint` call with `pcall`. For example: ```lua vim.api.nvim_create_autocmd({ 'BufWritePost' }, { callback = function() pcall(require, 'lint.try_lint') -- instead of require("lint").try_lint() as docs mention end,...