-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'onDidChangeActiveTextEditor' cannot work for ipynb file #3424
Comments
or we can enhance the capability of 'TextEditor ' to let it include 'ipynb' file |
This is impossible for now. You can ask the Python extension which implemented the ipynb support. You can also wait for the upcoming notebook API: microsoft/vscode#90382. |
@octref do we have any plan for updating this API? We currently still need to have this one for supporting our tool. Thank you! |
You should ask @rebornix |
pinging. @rebornix Thanks |
|
Thanks for your reply! Is it possible to convert webview to text editor or apply webview to the API? |
I'm currently using onDidChangeActiveTextEditor: Event<TextEditor | undefined> to do vscodeextension project. This works for 'py' and 'hql' file. However, if I use ipynb file, this cannot work. I think the main reason for this is that "*.ipynb" file is not a texteditor, so it could not be treated equally. Could you help enhance this api's capability? Thanks in advance!
As shown below, these two are differently treated by the api.
@octref
The text was updated successfully, but these errors were encountered: