为什么Windows SSH SDK中VS Code快捷方式的上下文菜单中的项目不一致?

6g8kf2rb  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(147)

我使用VS Code通过ssh连接在两个不同的服务器上编辑/data文件夹中的文件。
现在,在第一种情况下,在Windows栏中的VS代码快捷方式的上下文菜单中的项目显示data [SSH: servername],而在第二种情况下,它只显示data。我想第二个链接也显示data [SSH: servername]。我试图找出这些快捷方式存储的位置,但没有成功。有人能帮助我吗?
x1c 0d1x的数据
其他信息:
如果我从我的vscode快捷方式的上下文菜单中启动两个固定的快捷方式,那么它看起来像这样:



因此,vs代码的配置窗口标题似乎没问题。
我搜索了注册表,但没有找到任何结果。
我没有这些项目的本地.settings文件,因为我没有打开本地工作区,而是直接连接到远程服务器。
我在远程资源管理器中确实看到了预期的两个服务器。

whlutmcx

whlutmcx1#

正如我之前在对How can I change the text in my desktop environment's taskbar (or in panel using Linux) for my VS Code windows?的回答中所述,这里的文本基于窗口标题,您可以通过VS Code设置进行控制。引用自defaultSettings.json:

  1. // Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:
  2. // - `${activeEditorShort}`: the file name (e.g. myFile.txt).
  3. // - `${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt).
  4. // - `${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt).
  5. // - `${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder).
  6. // - `${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder).
  7. // - `${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder).
  8. // - `${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder).
  9. // - `${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder).
  10. // - `${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace)).
  11. // - `${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace).
  12. // - `${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace).
  13. // - `${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used.
  14. // - `${appName}`: e.g. VS Code.
  15. // - `${remoteName}`: e.g. SSH
  16. // - `${dirty}`: an indicator for when the active editor has unsaved changes.
  17. // - `${focusedView}`: the name of the view that is currently focused.
  18. // - `${separator}`: a conditional separator (" - ") that only shows when surrounded by variables with values or static text.
  19. "window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}${profileName}${separator}${appName}",

字符串
请特别注意rootNameremoteName的描述。同时检查您是否在工作区.vscode/settings.json文件中更改了此设置,从而导致了您所观察到的问题。如果这不是原因,则可能与SSH扩展本身有关,我需要深入研究精简的源代码。

展开查看全部

相关问题