Panel search string content

I’m wondering, with the actual Kirby 3.9.x, is it possible in the panel to constrain a search? Like if I want to search for “Colombie”, Kirby is proposing “Colombier” as well but I want to contrain the search to “Colombie” only. Possible?

In the frontend, you would limit the search to whole words, to achieve the same, you should could adapt the page view search in a plugin.

No, I mean the search in the backend. The one available when in the blueprint this option is set:

search: true

Is it possible to used “” in order to force to search a whole word only?

Maybe it did not express myself well.

Kirby has an option to limit search to whole words in the search components, which you can use when you do a front-end search.

In the pages search in the Panel, however, this option is not used and it is not configurable via the blueprint. This is the code from /kirby/config/areas/site/searches.php

		$pages = $kirby->site()
				->index(true)
				->search($query)
				->filter('isListable', true)
				->paginate($limit, $page);

The only way to change this is by changing the Panel search: