sourceview
sourceview copied to clipboard
sourceview binding for Rust
Is there any example application showing to use sourceview?
This is my fix for #131, and, to test it, I added some examples to the repository, thus also fixing #102. Presently, it doesn't have any easy-mode interface, but I...
I'm currently trying to use this crate in a project that needs heavy-duty source code editing. Part of that is a basic auto-complete implementation. It needs to be a bit...
In the main crate of gtk-rs, most widgets have a builder struct such as: ```rust let builder = gtk::TextViewBuilder::new(); /* ... setup */ let text_view = builder.build(); ``` which are...
Right now, the only way to use a custom language for syntax highlighting is to install the .lang file inside specific folders or add a folder that contains it to...
With gtk 0.5.0 and sourceview 0.5.0, all goes fine, until I try to use `gtk::ResponseType::Other(0)` which is only available from gtk 0.6.0. So I change to gtk 0.6.0, sourceview ^0,...