Is it possible to disable the input of commands in the search window of the toolbar?

On the Visual Studio toolbar, you can enter commands in the search field, prefixed with>. Is there any way to disable this? I have never used this feature, and it is a little annoying when you try to find something that you think the prefix is ​​larger than in the code. This is especially annoying when you accidentally search for "> exit" and the IDE quits (I knew there was a line in the code that was something like if(counter > exitCount), so I entered this search without thinking).

At least you can escape the> character so that you can search for it? The prefix with ^ does not work.

+3
source share
3 answers

. , .

>exit, >Edit.Find >exit ; , , . , .

+2

, > .

, . ?

, ctrl + F , ctrl + I

, , - , .

+1

, . ?

The commands are the same as the ones you can enter in the command window, so you can pretty much use the entire IDE and debugger using this. There are tons of predefined aliases for common commands. Open a command prompt and enter aliasfor the list to get you started.

0
source

Source: https://habr.com/ru/post/1696434/


All Articles