<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-15"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
<blockquote cite="mid:4808A8A7.903@vidat.eu" type="cite">
  <blockquote cite="mid:20080418154336.3452a6a6.enrico.troeger@uvena.de"
 type="cite">
    <blockquote type="cite">
      <pre wrap="">Hi @ all,
is there a posibility to search in all word of an document?
there are no matches for words inside strings ( sql-queries f.e. ) or 
php-variables
    </pre>
    </blockquote>
    <pre wrap=""><!---->
I'm not sure whether I'm understanding you right.
You want an auto completion for "bar" from the following example:

<?php
$foo = "bar";
?>
Then Geany should suggest "bar" in the auto completion list?

Regards,
Enrico
  </pre>
  </blockquote>
Yes, if I've got let s say 2 queries:<br>
  <br>
$Query1 = "SELECT ColWithLongNameAndMeaning1,
ColWithLongerNameAndMeaning2 FROM ".$tblWhatEver.";";<br>
  <br>
And I write $Query2 = "SELECT CONCAT( Col<br>
  <br>
then it would be nice if auto completion would find both of the
previous ColNames ( and what ever else begins with "Col".<br>
This is the easiest way to find out ( without scrolling 500s of lines
up ) if I write the col or variable correct.<br>
  <br>
In Kate it is like this, but Kate does not support custom definitions
of function setc. for auto completion. So I ' ve spent the whole night
to customize the syntaxhighlighting ( colors ) and tags and now I do
not now if - and when how to get this work in Geany :(<br>
</blockquote>
I forgot:<br>
<br>
If you edit a Javascript-file with an Object-definition in the json way:<br>
var blubber = {<br>
    x : 0,<br>
    foo : function(){<br>
       return "bar";<br>
    }<br>
}<br>
autocolpletion does not work, because no functions like "function
foo().." are found ( I think ), too.<br>
<br>
</body>
</html>