With HUGE thanks to Neil...

I've managed to cobble together a ruby.api for SCiTE, along with some
property file changes to enable autocomplete and calltips.

Now the question is, where should I put these files so other people
can get to them?

- matt

On 10/5/05, Neil Hodgson <nyamatongwe+thunder / gmail.com> wrote:
>     '?' is used in Scintilla autocompletion as the default separator
> between a name and the number of the icon to display next to it. There
> is no SciTE setting to change this but a Lua script can set the
> editor.AutoCTypeSeparator property:
>
> function OnOpen(f)
>      editor.AutoCTypeSeparator=string.byte("~")
> end
>
>     calltip.<lexer>.word.characters controls which characters are
> considered part of identifiers for the purpose of calltip look up. It
> may be reasonable to specify
>
> calltip.ruby.word.characters=$(chars.alpha)_?!
>
>     More information at
> http://scintilla.sourceforge.net/SciTEDoc.html
>
>     Neil
>
>