findinfiles

“Find in files” in Visual Studio 2017 does not work

笑着哭i 提交于 2021-01-28 14:39:06
问题 When I use the "find in files" Window in Visual Studio 2017 and select "entire solution" to search in, the search does not work: the result window opens and the options for the search are listed, but nothing else happens or is listed in the result window. When I select "all opened files" or "current window" instead of "entire solution", search works without problems. It does not depend on the solution opened: I tried to search in several different solutions and also in a completely new one. I

What happened to the Visual Studio extension for “Ultra Find”?

不羁的心 提交于 2019-12-01 04:41:23
What happened to the Visual Studio extension for "Ultra Find"? I've seen references all over this site and the Internet for this allegedly awesome extension. Here are a couple of links: http://blog.arainia.com/2010/08/ultra-find-getting-started.html http://coolthingoftheday.blogspot.com/2010/08/i-find-you-ultra-ultra-find-vs2010-add.html And here's a S.O. link: How to exclude designer.cs from Visual Studio file search However, when I search in the VS Extension Manager , nothing shows up. It's as if the extension never existed. I am guessing the author pulled it for some reason, perhaps in

What happened to the Visual Studio extension for “Ultra Find”?

拟墨画扇 提交于 2019-12-01 02:25:36
问题 What happened to the Visual Studio extension for "Ultra Find"? I've seen references all over this site and the Internet for this allegedly awesome extension. Here are a couple of links: http://blog.arainia.com/2010/08/ultra-find-getting-started.html http://coolthingoftheday.blogspot.com/2010/08/i-find-you-ultra-ultra-find-vs2010-add.html And here's a S.O. link: How to exclude designer.cs from Visual Studio file search However, when I search in the VS Extension Manager , nothing shows up. It's

Is there something like a “CSS selector” or XPath grep?

无人久伴 提交于 2019-11-30 08:42:30
I need to find all places in a bunch of HTML files, that lie in following structure (CSS): div.a ul.b or XPath: //div[@class="a"]//div[@class="b"] grep doesn't help me here. Is there a command-line tool that returns all files (and optionally all places therein), that match this criterium? I.e., that returns file names, if the file matches a certain HTML or XML structure. Dave Jarvis Try this: Install http://www.w3.org/Tools/HTML-XML-utils/ . Save a web page (call it filename.html). Run: hxnormalize -l 240 -x filename.html | hxselect -s '\n' -c "label.black" Where "label.black" is the CSS

Is there something like a “CSS selector” or XPath grep?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 11:44:38
问题 I need to find all places in a bunch of HTML files, that lie in following structure (CSS): div.a ul.b or XPath: //div[@class="a"]//div[@class="b"] grep doesn't help me here. Is there a command-line tool that returns all files (and optionally all places therein), that match this criterium? I.e., that returns file names, if the file matches a certain HTML or XML structure. 回答1: Try this: Install http://www.w3.org/Tools/HTML-XML-utils/. Save a web page (call it filename.html). Run: hxnormalize