You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The current extension does not differentiate Python source files and Jupytext notebooks as they share the same .py extension. Therefore, it will open all files ending with .py in a text editor.
Describe the solution you'd like
Open Jupytext notebooks as notebooks.
Describe alternatives you've considered
I created a POC at https://github.com/yjoer/jupyterlab-quickopen/tree/poc-1. When we hit enter after selecting a path, the client sends a request to the server if it ends with .py. On the server, we will read the first line of the file to identify the file type. I have implemented the tests for the percent format with and without metadata. If it matches, the handler will return "notebook" as the widget name otherwise "default". This allows us to open a conventional Python file in a text editor.
2024-10-09_01-30-46.mp4
Additional context
N/A
The text was updated successfully, but these errors were encountered:
I haven't looked too much into it yet, but maybe there is something to be done on the client side only, that would involve checking the preferred factory for a document before opening it here:
The challenge is that the path alone does not help identify the appropriate widget. It could be opened in the text editor or notebook before looking at the content. I believe DocumentManager does not know the content given a path. Do we have some other ways to peek at the files?
Is your feature request related to a problem? Please describe.
The current extension does not differentiate Python source files and Jupytext notebooks as they share the same
.py
extension. Therefore, it will open all files ending with.py
in a text editor.Describe the solution you'd like
Open Jupytext notebooks as notebooks.
Describe alternatives you've considered
I created a POC at https://github.com/yjoer/jupyterlab-quickopen/tree/poc-1. When we hit enter after selecting a path, the client sends a request to the server if it ends with
.py
. On the server, we will read the first line of the file to identify the file type. I have implemented the tests for the percent format with and without metadata. If it matches, the handler will return "notebook" as the widget name otherwise "default". This allows us to open a conventional Python file in a text editor.2024-10-09_01-30-46.mp4
Additional context
N/A
The text was updated successfully, but these errors were encountered: