問題描述
VS Code 查找和替換:當我輸入 ctrl+h 時,有沒有辦法保留我以前的查找項? (VS Code find‑and‑replace: is there a way to keep my previous find term when I type ctrl+h?)
目前,當我使用 ctrl+h 突出顯示某些內容時,我的查找項設置為等於突出顯示的文本。有沒有辦法阻止這種情況(並保持我的查找術語與以前相同)?
我經常想在 VS Code 中查找和替換,做某事,突出顯示某事,然後找到‑ 並再次更換相同的東西。有沒有辦法讓我不必再次重新輸入我的查找詞?
我知道有些插件具有此功能;如果您知道任何可以讓我同時查看查找和替換術語的方法,我想知道。
參考解法
方法 1:
Set this setting to false
:
// Controls if we seed the search string in Find Widget from editor selection
"editor.find.seedSearchStringFromSelection": false,
Editor > Find: Seed Search String From Selection
Doing this will also affect your Find/Search in Files functionality.
(by BeeePollen、Mark)