Neil Hodgson a écrit :
editor:SearchInTarget("F\(O*\)B")

  Lua uses backslash escapes so you need to escape the '\' characters:

editor:SearchInTarget("F\\(O*\\)B")

Or use the so useful literal strings:
editor:SearchInTarget([[F\(O*\)B]])
This avoids the Java nightmare of doubling all anti-slashes...
Of course, the Posix option must be deactivated, too.

--
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  --  --  --  --  --  --  --  --  --  --  --  --  --

_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to