VS Code 查找和替換:當我輸入 ctrl+h 時,有沒有辦法保留我以前的查找項? (VS Code find-and-replace: is there a way to keep my previous find term when I type ctrl+h?)


問題描述

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 BeeePollenMark)

參考文件

  1. VS Code find‑and‑replace: is there a way to keep my previous find term when I type ctrl+h? (CC BY‑SA 2.5/3.0/4.0)

#find #replace #visual-studio-code






相關問題

禁止查找和 grep“無法打開”輸出 (Suppress find & grep "cannot open" output)

Cakephp 複雜查詢 (Cakephp complex query)

如何在 hasMany 關聯中使用 CakePHP 2 查找? (How to use CakePHP 2 find in a hasMany association?)

Jquery 響應 find() 失敗? (Jquery respond to find() fail?)

正則表達式記事本++ (RegEx Notepad++)

使用 VBA 在 MS Word 表格中查找和替換可變長度文本 (Find & replace variable length text in MS Word tables using VBA)

獲取子字符串周圍的字符數半徑 (Get set number radius of characters around substring)

僅在不到一天的文件中搜索字符串 (Search for a string only in files less than a day old)

c++ 查找和替換整個單詞 (c++ Find and replace whole word)

使用 grep 過濾後如何忽略行首和行的一部分 (How to ignore beginning of line and parts of a line after filtering with grep)

查找函數加上循環給出 1004 錯誤 (Find function couple with loop gives 1004 error)

VS Code 查找和替換:當我輸入 ctrl+h 時,有沒有辦法保留我以前的查找項? (VS Code find-and-replace: is there a way to keep my previous find term when I type ctrl+h?)







留言討論