Italo Silva

Results 24 comments of Italo Silva

```fish ❯ complete j complete --no-files j -a '(__zoxide_z_complete)' ```

This seems to only happen with `j`. I tested with `--cmd x`, `f`, `k`, etc., and it works properly. I used `autojump` before `zoxide`, but it's not installed anymore, and...

There's a `/opt/homebrew/share/fish/completions/j.fish` (I'm on an M1 Mac), but I removed it and am still getting the same problem. FWIW, both `autojump`, `fish` and `zoxide` were installed with `brew`.

I tried adding `complete -e j` and `complete -c j -e` before the `zoxide` init file, and it still doesn't work. The weirdest thing is that when I first start...

pyright doesn't seem to have a problem with it: ``` PS C:\Users\italo\Desktop> cat .\test.py import pandas as pd df1: pd.DataFrame = pd.DataFrame( [[1, 2], [3, 4]], columns=['a', 'b'] ) df1...

I see. How can I test the CLI pyright with the pylance stubs to make sure it is indeed a pylance or pyright issue?

This issue also happens with `.loc` when called with a callable as the first argument. ``` import numpy as np import pandas as pd df = pd.DataFrame(np.random.randint(0, 100, size=(20, 4)),...

I'm experiencing the same thing on Windows 10. My keyboard layout is ABNT-2. A workaround for this is using [PowerToys'](https://github.com/microsoft/PowerToys) Keyboard Manager to override the AltGr + Q shortcut to...

`lsp_dynamic_workspace_symbols` doesn't work for me: it gives me an empty screen. However, you can get a prompt for a query and use that for `lsp_workspace_symbols`: ```lua vim.keymap.set("n", "fS", function() vim.ui.input({...

`cd` would be the motivating example. Most of the time, I don't want it shown in history. But sometimes, when I'm in a complex directory structure with weird names, I'd...