https://bugs.kde.org/show_bug.cgi?id=360977

--- Comment #7 from Andreas Schleth <[email protected]> ---
OK, You caught me (again!) with not investigating the options closely enough...
  Thanks!

I tried and succeeded.  It even works, when I change the default and then, in
another session, open a different database.

Maybe it would be easiest to change the default and leave it at that.  
However, as this seems to be one of the central KPA settings
(~/.kde4/share/config/kphotoalbum.rc ??), this default will only work as such
for new users or people who clean up their rc-files.  [On the other hand: I did
not find this setting in the rc-files...(??)]

Right now: "Works for me. ™" 

Let's add some explanation (found by means of experimental informatics):
- Match tags from the first character:  
regex: /^search_string/
search a left justified string
This is, how autocomplete works in the most natural way.

- Match tags from word boundaries: 
regex: /\Wsearch_string.*\W/ 
search a string left justified at any word boundary - cannot search across word
boundaries
If you need to find last names.

- Match tags anywhere: 
regex: /search_string/
search any string anywhere
This is most useful for people who use the input field knowingly as a search
field.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to