Kaydet (Commit) a2c0d34c authored tarafından Nick Treleaven's avatar Nick Treleaven

Add whole word only matching option for Find in Files.

Add fixed string matching option for Find in Files.
Make fixed string, case sensitive matching default for efficiency.
Sort filenames passed to Grep alphabetically.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@825 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 129af782
2006-09-20 Nick Treleaven <nick.treleaven@btinternet.com>
* src/search.c, src/search.h:
Add whole word only matching option for Find in Files.
Add fixed string matching option for Find in Files.
Make fixed string, case sensitive matching default for efficiency.
Sort filenames passed to Grep alphabetically.
2006-09-18 Enrico Tröger <enrico.troeger@uvena.de>
* src/dialogs.c, src/callbacks.c:
......
This diff is collapsed.
......@@ -22,12 +22,8 @@
*/
typedef enum
{
FIF_CASE_SENSITIVE = 1 << 0,
FIF_USE_EREGEXP = 1 << 1,
FIF_INVERT_MATCH = 1 << 2
} fif_options;
#ifndef GEANY_SEARCH_H
#define GEANY_SEARCH_H 1
// the flags given in the search dialog for "find next"
typedef struct
......@@ -50,5 +46,4 @@ void search_show_replace_dialog();
void search_show_find_in_files_dialog();
gboolean search_find_in_files(const gchar *search_text, const gchar *dir, fif_options opts);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment