From 34ee3a11c1f4022124b3b19a7893c861643f7058 Mon Sep 17 00:00:00 2001 From: wangweiye7840 Date: Tue, 12 Mar 2024 18:36:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=B7=A5=E5=85=B7=E9=9D=A2?= =?UTF-8?q?=E6=9D=BF=E4=B8=AD=E7=9A=84=E4=B8=80=E4=B8=AA=E9=94=99=E8=AF=AF?= =?UTF-8?q?=EF=BC=88=E4=BC=9A=E5=BD=B1=E5=93=8Dmetadata=E4=BF=AE=E6=94=B9,?= =?UTF-8?q?=20=E5=8E=9F=E4=B8=BA=E5=85=88=E6=89=A7=E8=A1=8C=E5=90=8E?= =?UTF-8?q?=E6=89=93=E5=BC=80metadata.txt=E6=96=87=E4=BB=B6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 工具v2/工具面板.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/工具v2/工具面板.py b/工具v2/工具面板.py index b7634cb2..de39d1e8 100644 --- a/工具v2/工具面板.py +++ b/工具v2/工具面板.py @@ -9,7 +9,7 @@ def run_command(name,openfilelist): configjson = load_dict("文本文件/config.json") for f in openfilelist: if not f in configjson: - os.system("code "+f) + os.system("code -w "+f) else: lineindex = getlineindex(f'"{f}"',"文本文件/config.json") os.system(f"code -w -g 文本文件/config.json:{lineindex}")