Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
291 views

Vim: Ignore Special Path in Search

In my .vimrc file, I have two very useful lines: set path=~/nbapp/** set backupdir=~/nbapp/temp The first line allows me to search in my project directory and subdirectories. The second line makes ...
2
votes
1answer
104 views

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

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 ...
2
votes
3answers
304 views

Vim: Search in Files Short-cut Key

I use vimgrep (or grep) to search in files inside vim, but I see it's quite inconvenient to have to write that every time I want to make search in vim. Any idea on how to make a suitable ...
2
votes
3answers
758 views

Visual Studio 2008 Find in Files not working..!

I am having a really bizarre problem. Find in Files feature in VS2008 always finds zero matches when looking in the Entire Solution and gives the error 'No files were found to look in' when looking in ...
1
vote
2answers
211 views

Vim: Search in Open Buffers

One features I like with Visual Studio is the ability to search in open files only. For example, if I recently did changes to some files and I would like to trace those changes, I might search for a ...
1
vote
2answers
927 views

Make Visual Studio's Find in Files default to the project directory?

I have many different branches/checkouts of the same project code on my development machine. Each one is virtually the same except for various maintenance bug fixes or improvements I'm working on ...