Questions tagged [incremental-search]
36 questions
2
votes
4 answers
Javascript code to implement incremental search
Aim: When the user types a word in a text box then all the words starting with that word should be populated and we can select one of them.

Bhanu kushwah
- 21
- 1
- 2
1
vote
1 answer
incremental search method script errors
I wrote my very first octave script which is a code for the incremental search method for root finding but I encountered numerous errors that I found hard to understand.
The following is the script:
clear
syms x;
fct=input('enter your function in…

manel bouazza
- 33
- 7
1
vote
0 answers
Incremental regex matching
Problem: The program needs to read from an input stream of characters, and match the input against a predefined list of regex patterns. The program should report a match as soon as it is found (report all if there are multiple), or report failure…

Cyker
- 9,946
- 8
- 65
- 93
1
vote
2 answers
Gathering statistics on partitioned tables
Ultimately i need to know if this will be enough. In oracle, there is a setting on a table to incrementally gather statistics, rather than a full table. Basically, it will only gather stats on partitions where the data has changed. We need to make…

user9766188
- 47
- 2
- 9
1
vote
0 answers
Visual Studio 2013 Incremental Search Behavior Changed
In Visual Studio 2010, the behavior of incremental search was:
Ctrl+I
Type your search characters
Click somewhere else to quit incremental search
To search again using the same search: Ctrl+I, Ctrl+I
In Visual Studio 2013, the behavior of…

Peter Lindgren
- 11
- 2
1
vote
1 answer
How select the rest of the word in incremental search in Intellij IDEA?
When in incremental search mode in Intellij IDEA, is there a way to select the rest of the word. For example, suppose I want to find the word “handleReservationGranted”. I type Ctrl-f to enter incremental search mode, and start typing the letters…

Henrik Warne
- 2,313
- 2
- 25
- 20
0
votes
2 answers
DBGrid incremental search component
I am looking into a improved DBGrid that allows me to search items only by pressing the keyboard without enetering data in the special search fields.
Any advanced functions such as colors will be great.

opc0de
- 11,557
- 14
- 94
- 187
0
votes
0 answers
ElasticSearch fuzzy incremental search strategy and index creation
I have developed an ElasticSearch (ES) index to meet a user's search need. The language used is NestJS, but that is not important.
The search is done from one input field. As you type, results are updated in a list.
The workflow is as follows :…

Xav
- 23
- 1
- 7
0
votes
0 answers
How to add all of the roots found by the program into a vector in matlab?
I have the following matlab code that uses incremental search to find the value of x where there is a sign change. Using the position found, I can calculate xg.
The function I am using is fun=(0.01-1)+(x*cot(x)).
Once I used the incremental search…

cschlum
- 25
- 5
0
votes
1 answer
How to set vim incremental search highlight color different from existing search match color
I want vim to start highlighting matches right away as I type after typing '/'. But that highlight color should be different from the color of the existing matches.
Example, I have the following text:
foo bar baz
After the end of this…

user3133806
- 15
- 4
0
votes
2 answers
Incremental search in Idea the word under cursor
I would like to search in current file the word under cursor like Alt+F3, except manually selecting current word? Is there alike keyboard shortcut?

Loom
- 9,768
- 22
- 60
- 112
0
votes
1 answer
C# WinForms ListBox Incremental Search with Key/Value Pairs as ListItems
I've searched for an answer, and whilst there is one that works when using a listbox with items of type string, I can't figure out how to convert when my items are of type
KeyValuePair
I want to be able to search as I type in the…

MartinS
- 111
- 1
- 14
0
votes
1 answer
Delphi - THashedStringList incremental search
I have a THashedStringList with almost 200k items on it(strings and objects). This list will be heavy used on searching items on it. In some cases I need an incremental search on it. I've wrote a rudimentary example for an incremental search using…

RBA
- 12,337
- 16
- 79
- 126
0
votes
0 answers
Finding double roots of equations using python
I am currently trying to locate the roots of the function
f(x)=Re[(-1 + e^(2 i x))^8 (-i + e^(2 i x) x)^8]=0
numerically using python 2.7. By studying the book 'Numerical methods in engineering with python 3" I have employed a root search which…
0
votes
1 answer
vim: define command for grep + copen + incremental search
I'd like to define a custom command for doing the following steps: grep the current word, copen, incremental search the grep'ed word. Here's the command I'm using:
nmap :execute "grep! -Irn " . shellescape(expand("")) . "…

Yu Zhou
- 788
- 6
- 11