Open Haleshot opened 3 weeks ago
Which browser? And can you help check other browsers if they work?
Can you also check you haven't overridden these yourself?
Which browser? And can you help check other browsers if they work?
Can you also check you haven't overridden these yourself?
Checked in Edge and Chrome (I have them), doesn't seem to work. Reset all my keyboard custom shortcuts (didn't have many before).
Edit: Do you think it has to do with Windows? Is it working on your end? I did notice in the source code how commands get picked up depending on the OS. (But not sure why 0 is not getting registered and Move Cell up which has 9 gets picked up).
Ok, I'll try to repo, otherwise possibly a windows issue.
Ok, I'll try to repo, otherwise possibly a windows issue.
Update: tried it in my friend's MacBook; works there. It seems to be a Windows issue. Yet to try in Linux environment.
Thank for checking! This is helpful
Describe the bug
The keyboard shortcut
Ctrl + Shift + 0
does not function as expected in specific contexts:All other shortcuts work as expected, and the "Move cell down" function operates correctly when accessed through the UI options (right clicking on the UI cell block to get a bunch of options > move cell down). This indicates the issue is isolated to the
Ctrl + Shift + 0
shortcut recognition, rather than the underlying functionality.Environment
Code to reproduce
Issue pertains to keyboard shortcut functionality rather than code execution.
Hello world program to run for reference
```python import marimo __generated_with = "0.9.14" app = marimo.App(width="medium") @app.cell def __(mo): mo.md("Hello World!") return @app.cell def __(): import marimo as mo return (mo,) if __name__ == "__main__": app.run() ```