Steps to reproduce: Open an ipynb file and make a change Close without saving Accept "Save" from the "Do you want to save changes dialogue" Attempt to reopen the file in the same vscode session - the file won't open Exit and restart vscode - the file will reopen with previous changes unsaved
Annotations 2 warnings main Unexpected input(s) 'appInsightsKey', valid inputs are ['token', 'notYetReleasedLabel', 'insidersReleasedLabel'] main Unexpected input(s) 'appInsightsKey', valid inputs are ['token', 'config-path'] ...
147 + .vscode/ 148 + node_modules/ 149 + config.pyDiff for: README.md +24 Original file line numberDiff line numberDiff line change @@ -0,0 +1,24 @@ 1 + ## 上传文档到RagFlow知识库 2 + [RagFlow](https://github.com/infiniflow/ragflow)是一个基于 LLM 的问答系统,能够...
.vscode/ @@ -0,0 +1,25 @@ 1+ importpyautogui 2+ importtime 3+ 4+ # 设置鼠标移动的阈值,超过这个值将不执行点击 5+ threshold=50 6+ last_position=pyautogui.position() 7+ pause_sleep_time=0 8+ 9+ whileTrue: 10+ current_position=pyautogui.position() ...