Hi, I'm looking for a solution to create a file tags with multi funtion, The problem is after whitespace the function losted. **Example** : fun **X**d (x......) fun **X**b (.y.....) fun **X**r (z......) so with this example after withspace I lose Fun function, and auto complete start with **X**
Yes we can use _ but build a long file with keywords, function with similarity over a long period , won't be very clear.
What language are you using?
What language are you using?
For now C and I think this can be good for other language if there a solution without _(underscore)
`fun Xd ()` is not C
`fun Xd ()` is not C
just example, the question not about specific language is about syantax of geany autocomlete, now we are so far of subject
Autocomplete does not have a syntax, it is just `name<tab>` for names, or `->` or `.` for for C/C++ and similar DOP languages, or `(` or `<ctrl><space>` for function calltips (not actually autocompletion).
It matches symbols that have to be parsed from the source language, which means for generating tags the language is important and you can't change names to anything not allowed in the language.
github-comments@lists.geany.org