Questions tagged [incremental-search]
36 questions
20
votes
3 answers
Incremental Search vs Quick Find in Visual Studio
What is the difference between Incremental Search (Ctrl + I) and Quick Find (Ctrl + F) in Visual Studio?

Mohamad Shiralizadeh
- 8,329
- 6
- 58
- 93
18
votes
2 answers
How to search incrementally for an all-lower-case pattern in Emacs?
In Emacs, by default, incremental search is case-insensitive. However, if you type any upper case characters as part of the search string, it becomes a case-sensitive search. So the question is, how do you easily perform a case-sensitive search of…

WilliamKF
- 41,123
- 68
- 193
- 295
15
votes
4 answers
Vim incremental search next result
I have incsearch and hlsearch enabled
So I hit / to enter search mode.
Then I type text I want to search for and it finds the first occurrence of the text I typed.
Then I want to jump to next occurrence of the text I typed without exiting search…

Troydm
- 2,642
- 3
- 24
- 35
12
votes
4 answers
How to do incremenatal search in Vim like it is done in Emacs?
When using incremental search in vim, the cursor immediately goes to the next occurrence of the search term as far as you have typed it. Emacs has a similar incremental search function. However, there is a feature of emacs isearch that I have found…

00prometheus
- 767
- 7
- 20
5
votes
2 answers
Is there emacs-like incremental search in IntelliJ IDEA?
I miss the emacs behavior for incremental search. In emacs, we can do this:
C-s
key in search text, i.e. "button"
The first occurance of button will be found. If you continue to press C-s, the next occurance will be found. It seems to me that…

Gary
- 6,357
- 5
- 30
- 36
5
votes
2 answers
Proper return value for TVN_KEYDOWN
I have very recently answered to the question about Creating TreeView with nodes and checkboxes.
While I was pondering how to properly process the case when treeview's node is checked when user pressing spacebar I ran into TVN_KEYDOWN…

AlwaysLearningNewStuff
- 2,939
- 3
- 31
- 84
4
votes
2 answers
How to track number of distinct values incrementally from a spark table?
Suppose we have a very large table that we'd like to process statistics for incrementally.
Date
Amount
Customer
2022-12-20
30
Mary
2022-12-21
12
Mary
2022-12-20
12
Bob
2022-12-21
15
Bob
2022-12-22
15
Alice
We'd like to be able to…

anniej42
- 51
- 7
4
votes
1 answer
Time and space complexities of RRT and RRT*
What are the time and space complexities of RRT and RRT*? How does the incremental sampling based algorithms perform when compared to graph based incremental heuristic algorithms

J.Dow
- 65
- 4
3
votes
1 answer
How to simulate a column header click in devexpress xtraGrid?
Hi I have a devexpress grid on the form. I enable the incremental search on one of the columns. But I find I need to click the column header each time when I perform one search. Is there a way to simulate such header or column click in grid…

spspli
- 3,128
- 11
- 48
- 75
2
votes
1 answer
How to query for LDAP (Active Directory) deleted objects since a given time?
I need to query for incremental changes from an Active Directory forest using LDAP.
The easy part is to query for incremental updates of objects, and for creation of new objects. For this you can use the whenChanged property
Example:…

Nicholas DiPiazza
- 10,029
- 11
- 83
- 152
2
votes
0 answers
Time and space complexities of D* and D* Lite
What are the time and space complexities of D* and D* Lite? How to derive those?

J.Dow
- 65
- 4
2
votes
2 answers
How to do Incremental/Search as you type full text search on 5 million records sets using Elastic search
I m using elastic search on a huge dataset of all wikipedia article names they are approx 5 million in numbers database field name is articlenames
curl -XPUT "http://localhost:9200/index_wiki_articlenames/" -d'
{
"settings":{
"analysis":{
…

tina
- 312
- 1
- 4
- 18
2
votes
0 answers
Incremental search/replace in Visual Studio
So the other day a Sublime lover showed me how to do incremental search/replace in sublime and asked if I could do that in Visual Studio. After googling I found that Visual Studio does support Incremental Search through Ctrl + I, but there was no…

dotNET
- 33,414
- 24
- 162
- 251
2
votes
0 answers
VS2015 Incremental Search Cursor Movement (aspx/ascx)
In Visual Studio 2010 when I did an incremental search (using Ctrl+I) the cursor would automatically move to the first match (after the current cursor position) as I typed.
In Visual Studio 2015 all instances are highlighted as I type, but the…

freefaller
- 19,368
- 7
- 57
- 87
2
votes
1 answer
Incremental search in android using Volley library?
I have somehow implemented incremental search in android using AsyncTask. In incremental search an API is called for each character entered in edit text to get suggestions from server. For example,
User types a -> API is called.
User types ab -> API…

user1942655
- 21
- 3