Aaron
Aaron
Could I add the suggestion that it also be an entry in the "hamburger menu" / context menu / menubar menu? As a side note, these three menus seem like...
Spyder makes a best effort to adjust leading whitespace when pasting so that indentation level of multiple lines pasted remains relatively correct. It doesn't get it perfectly every time (plenty...
> Would you like to take a look at that? Sure! > > There's quite a lot going on in CodeEditor.paste... > > What do you mean by this? Just...
https://github.com/user-attachments/assets/a8a3d0ba-4776-4d22-b7e6-7ebd083fc871 I have not cleared any configs yet, but this should be well separated from my dev environment configs, so I think this was caused simply from a regular update...
I've tried taking a longer video of the behavior, but it's always too big for github... https://drive.google.com/file/d/1zrSUuDXhCrt8TT82E0ZHpG5QeUO44Bpn/view?usp=sharing Here's my process to repeat the bug so far: - Delete `.spyder-py3\config\transient.ini` to...
@ccordoba12 > This is a bug. We should always run the file in the IPython console. > ... > That's the change I implemented in 6.0.4, i.e. to always use...
perhaps something like this could help in a "best effort" manner to identify non-standard (non BCP 47) locale names? "spyder/config/base.py:get_interface_language" ```python3 # Solves spyder-ide/spyder#3627. try: locale_language = locale.getlocale()[0] except ValueError:...
I also recently was reminded of calling windows api functions directly from ctypes by an old S.O. answer I made a while ago. this might be another solution.. thoughts? ```python3...
@ccordoba12 I implemented that initially by registering `Esc` as a shortcut in the keyboard shortcuts manager. I see that `spyder-vim` is [also using a `QShortcut`](https://github.com/spyder-ide/spyder-vim/blob/master/spyder_vim/spyder/plugin.py#L67), but without registering it with...
I tested out connecting the `activatedAmbiguously` signal on the spyder-vim shortcut. It would seem any time there is a conflict like in this case it's kinda a case of both...