'In march 2022 (version 1.66), how to set terminal.findMatch?

"terminal.findMatch": true,
"terminal.findMatch.borderColor": "red"

👆Not at all

In march 2022 (version 1.66), how to set terminal.findMatch?



Solution 1:[1]

Those are not standalone settings, they are colorCustomizations and are set in the settings colorCustomizations (settings.json) like so:

"workbench.colorCustomizations": {
    
    "terminal.findMatchBorder": "#ff0000",

       // you should get intellisense below for more findMatch color properties you can set
    "terminal.findMatch.......
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mark