Есть участок, в котором перечислены поисковики. Можно набирать «wiki метан», и будет выбран поиск по ru.wiki*. Собственно нужно сделать так, что бы можно было набрать, к примеру «вики метан». Но с переменными на кириллице он не работает.
-- List of search engines. Each item must contain a single %s which is
-- replaced by URI encoded search terms. All other occurances of the percent
-- character (%) may need to be escaped by placing another % before or after
-- it to avoid collisions with lua's string.format characters.
-- See: http://www.lua.org/manual/5.1/manual.html#pdf-string.format
search_engines = {
luakit = "http://luakit.org/search/index/luakit?q=%s",
google = "http://google.com/search?q=%s",
duckduckgo = "http://duckduckgo.com/?q=%s",
wikipedia = "http://en.wikipedia.org/wiki/Special:Search?search=%s",
debbugs = "http://bugs.debian.org/%s",
imdb = "http://imdb.com/find?s=all&q=%s",
sourceforge = "http://sf.net/search/?words=%s",
wiki = "http://ru.wikipedia.org/wiki/Special:Search?search=%s",
}
Что можно сделать?