Rijul Kapoor

Results 10 comments of Rijul Kapoor

Seem to be having the same issue. The install fails as i use nvim on powershell (powershell 7.4.0 to be exact). To bypass this i can navigate to the lazy...

Good point. I've configured powershell to activate my venv on every new instance. I currently use a a neovim plugin via lazy (lspconfig) to configure my LSP server. The configuring...

I use Anaconda to manage my python envs. My Conda environment is set up within powershell using the 'conda init' command. ``` #region conda initialize # !! Contents within this...

I ran into this same issue earlier this week. Do you also use starship by any chance (and have its init called within your powershell script)? Try using Windows' inbuilt...

> If you use starship, just make sure the starship initialization happens _before_ the zoxide initialization. > > Invoke-Expression (&starship init powershell) > Invoke-Expression (& { (zoxide init powershell |...

> Can someone give me the output of this command: > > Get-Command prompt | Format-List * Heres what i get: ``` HelpUri : ScriptBlock : $origDollarQuestion = $global:? $origLastExitCode...

> Could you share your PowerShell config here? ``` # Enable Vi mode Set-PSReadLineOption -EditMode Vi # Set editor env variable $env:EDITOR = "nvim" # Starship function Invoke-Starship-TransientFunction { &starship...

Thanks for that tip! I think i've worked it out: I was seeing zoxide prompt messages show up during shell initialization, which was odd since zoxide hadn’t even been initialized...

> This should be driven by the same mechanism as shada and/or [context.c](https://github.com/neovim/neovim/blob/d22fcf2917465aff029e781080dcc8c582c93f0e/src/nvim/context.c), where possible. There is no reason to have a bunch of different ways to save/restore editor state....

I have implemented a small working PoC that extends the context.c mechanism to restore UI elements with minimal changed to existing systems. It works fine for the most part, but...