VS 代码 - 在 Activity 栏中切换搜索图标,从面板移动或返回
VS Code - toggle search icon in Activity Bar, move from panel or back
我不小心删除了 Activity 栏中的搜索图标,但不知道如何再次将其添加到那里。如果我单击 Activity 栏,我将不再看到此选项。
更新:v1.44 您现在可以简单地拖动许多视图,包括"Search"从侧边栏到面板和背面。参见 https://code.visualstudio.com/updates/v1_44#_increased-view-placement-flexibility and https://whosebug.com/a/55981465/836330
更新:v1.42 添加了上下文菜单选项
Move to Panel
/Move to Sidebar
某些典型的侧边栏视图,如 搜索、大纲 和自定义视图。因此,您不必使用设置将搜索视图移回侧边栏。这是一个演示:
另请注意,您不再 right-click 在侧边栏中搜索输入下方的空 space 中,而是 on/near Search
header 本身调出切换选项。
作为 v1.42 版本的一部分,下面提到的 search.location
设置 将被弃用 。
Your setting should migrate automatically, but you will need to use
the new generalized method to move the Search view going forward. You
do not need to enable the experimental preview setting above in order
to move the Search view with the new context menu entry.
所以我认为不再有设置了,你只需 right-click 在 header 文本 "Search" 上,无论它是在面板中还是在边栏中处于活动状态即可移动它。请参阅下面的演示。
Right-click 在 "Search" header 上,如果你在侧边栏中有 "Move to Panel".
如果“搜索”在面板中,right-click 搜索到 "Move to Sidebar" 一词。
要在此时移动输出视图,您需要启用 workbench.view.experimental.allowMovingToNewContainer
。
有一个新的未绑定命令 workbench.view.search.moveView
,您可以使用它在面板和侧边栏之间切换搜索位置。但请注意,在我的测试中它只工作了几次,因为当你将搜索移动到侧边栏时它会聚焦面板 - 我会提交一个错误。
上一个答案::
您可能修改了设置:
"search.location": "sidebar",
这是备选方案的默认设置
"search.location": "panel",
这会将搜索小部件作为另一个选项卡放入终端面板。
从 vscode v1.35 左右开始,您现在可以 right-click
在搜索视图下方的空白 space 中(即,在打开的搜索输入下方的侧边栏中)你会得到 Toggle Search View Position
.
的选项
搜索视图的上下文菜单开关是永久性的。它会自动将此设置添加到您的 settings.json
:
"search.location": "panel",
目前(但请参阅下面的编辑)将图标移回 activity 栏(因此将跨文件搜索功能移至侧边栏)的唯一方法是将该设置更改为 sidebar
选项。或者在设置编辑器中查找此设置:
Search: Location
Controls whether the search will be shown as a view
in the sidebar or as a panel in the panel area for more horizontal
space.
编辑:最近,vscode 在搜索区域中添加了 right-click 的功能,当它在面板中时将其切换回侧边栏。
在windows
file--> preferences-->settings
在mac
preferences -> settings
vs-code 版本 1.30.2
第 1 步:单击导航栏中的“编辑”
第 2 步:在文件中查找
.
.
您可以轻松地在侧面面板中搜索任何内容
或者如果你想在文件中搜索任何内容,那么
第一步:点击“Ctrl+F”
我不小心删除了 Activity 栏中的搜索图标,但不知道如何再次将其添加到那里。如果我单击 Activity 栏,我将不再看到此选项。
更新:v1.44 您现在可以简单地拖动许多视图,包括"Search"从侧边栏到面板和背面。参见 https://code.visualstudio.com/updates/v1_44#_increased-view-placement-flexibility and https://whosebug.com/a/55981465/836330
更新:v1.42 添加了上下文菜单选项
Move to Panel
/Move to Sidebar
某些典型的侧边栏视图,如 搜索、大纲 和自定义视图。因此,您不必使用设置将搜索视图移回侧边栏。这是一个演示:
另请注意,您不再 right-click 在侧边栏中搜索输入下方的空 space 中,而是 on/near Search
header 本身调出切换选项。
作为 v1.42 版本的一部分,下面提到的 search.location
设置 将被弃用 。
Your setting should migrate automatically, but you will need to use the new generalized method to move the Search view going forward. You do not need to enable the experimental preview setting above in order to move the Search view with the new context menu entry.
所以我认为不再有设置了,你只需 right-click 在 header 文本 "Search" 上,无论它是在面板中还是在边栏中处于活动状态即可移动它。请参阅下面的演示。
Right-click 在 "Search" header 上,如果你在侧边栏中有 "Move to Panel".
如果“搜索”在面板中,right-click 搜索到 "Move to Sidebar" 一词。
要在此时移动输出视图,您需要启用 workbench.view.experimental.allowMovingToNewContainer
。
有一个新的未绑定命令 workbench.view.search.moveView
,您可以使用它在面板和侧边栏之间切换搜索位置。但请注意,在我的测试中它只工作了几次,因为当你将搜索移动到侧边栏时它会聚焦面板 - 我会提交一个错误。
上一个答案::
您可能修改了设置:
"search.location": "sidebar",
这是备选方案的默认设置
"search.location": "panel",
这会将搜索小部件作为另一个选项卡放入终端面板。
从 vscode v1.35 左右开始,您现在可以 right-click
在搜索视图下方的空白 space 中(即,在打开的搜索输入下方的侧边栏中)你会得到 Toggle Search View Position
.
搜索视图的上下文菜单开关是永久性的。它会自动将此设置添加到您的 settings.json
:
"search.location": "panel",
目前(但请参阅下面的编辑)将图标移回 activity 栏(因此将跨文件搜索功能移至侧边栏)的唯一方法是将该设置更改为 sidebar
选项。或者在设置编辑器中查找此设置:
Search: Location
Controls whether the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space.
编辑:最近,vscode 在搜索区域中添加了 right-click 的功能,当它在面板中时将其切换回侧边栏。
在windows
file--> preferences-->settings
在mac
preferences -> settings
vs-code 版本 1.30.2
第 1 步:单击导航栏中的“编辑” 第 2 步:在文件中查找 . . 您可以轻松地在侧面面板中搜索任何内容 或者如果你想在文件中搜索任何内容,那么 第一步:点击“Ctrl+F”