From 7f4526fac5f6e078c907fbebfab5a48f6240103d Mon Sep 17 00:00:00 2001 From: Magicapple <78581469+magicapple123@users.noreply.github.com> Date: Wed, 23 Sep 2026 16:43:47 +0800 Subject: [PATCH 1/2] Add shortTitle to execInREPL and execSelectionInDjangoShell commands --- package.nls.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.nls.json b/package.nls.json index 038c0f278305..1a2787a821f9 100644 --- a/package.nls.json +++ b/package.nls.json @@ -22,6 +22,8 @@ "python.command.python.execSelectionInTerminal.shortTitle": "Run Selection/Line", "python.command.python.execInREPL.title": "Run Selection/Line in Native Python REPL", "python.command.python.execSelectionInDjangoShell.title": "Run Selection/Line in Django Shell", + "python.command.python.execSelectionInDjangoShell.shortTitle": "Run in Django Shell", + "python.command.python.execInREPL.shortTitle": "Run Selection/Line in REPL", "python.command.python.reportIssue.title": "Report Issue...", "python.command.python.clearCacheAndReload.title": "Clear Cache and Reload Window", "python.command.python.analysis.restartLanguageServer.title": "Restart Language Server", From 39cac30f6e1bf0a6509b92ffce466958f40edb48 Mon Sep 17 00:00:00 2001 From: Magicapple <78581469+magicapple123@users.noreply.github.com> Date: Wed, 23 Sep 2026 16:44:16 +0800 Subject: [PATCH 2/2] Add shortTitle to execInREPL and execSelectionInDjangoShell commands --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1f1ca2a8da8a..001b339e3cf0 100644 --- a/package.json +++ b/package.json @@ -333,7 +333,8 @@ { "category": "Python", "command": "python.execSelectionInDjangoShell", - "title": "%python.command.python.execSelectionInDjangoShell.title%" + "title": "%python.command.python.execSelectionInDjangoShell.title%", + "shortTitle": "%python.command.python.execSelectionInDjangoShell.shortTitle%" }, { "category": "Python", @@ -344,7 +345,8 @@ { "category": "Python", "command": "python.execInREPL", - "title": "%python.command.python.execInREPL.title%" + "title": "%python.command.python.execInREPL.title%", + "shortTitle": "%python.command.python.execInREPL.shortTitle%" }, { "category": "Python",