Páll Andrés Pálsson

Results 40 comments of Páll Andrés Pálsson

> Does Ctrl-2 or Ctrl-Space work? I don't know what neither of those are supposed to do, but no doesn't look like they do anything.

@matveyt I already removed the windows terminal keybinding that was using `Shift-2`. When I did that, `Ctrl-@` started to work in vim, but it still doesn't work in Neovim. >...

Just tested gVim and nvim-qt gVim - Works like a charm nim-qt - 2 gets written when i do ``, not the same behavior as when in TU

Is there any workaround for this?

This is what I added to my profile to make `jk` go to comand mode: ``` $j_timer = New-Object System.Diagnostics.Stopwatch Set-PSReadLineKeyHandler -Key j -ViMode Insert -ScriptBlock { [Microsoft.PowerShell.PSConsoleReadLine]::Insert("j") $j_timer.Restart() }...

@slacksystem try this: ``` $j_timer = New-Object System.Diagnostics.Stopwatch Set-PSReadLineKeyHandler -Key j -ViMode Insert -ScriptBlock { if (!$j_timer.IsRunning -or $j_timer.ElapsedMilliseconds -gt 1000) { [Microsoft.PowerShell.PSConsoleReadLine]::Insert("j") $j_timer.Restart() return } [Microsoft.PowerShell.PSConsoleReadLine]::Insert("j") [Microsoft.PowerShell.PSConsoleReadLine]::ViCommandMode() $line =...

In `lldb/lib/lldb-python/lldb/embedded_interpreter.py` the imported _readline_ module is from my installed python: `print(type(readline))` gives `C:\Users\\AppData\Roaming\Python\Python39\site-packages\readline.py`. It appears that _lldb_ is loading _readline_ from a python outside the embedded one? Is this...

BTW, I don't get this error when using the vanilla LLVM LLDB and I am able to use the `script` command when in the REPL

I don't understand how _lldb_ is finding my installed python. If I remove all python related things from my path, it still imports _readline_ from my local installation.

no, not that I can find. This is probably because I'm using miniconda and I don't have any environment active.. It is beyond me how _lldb_ is still picking it...