signal callback delegate or function to connect
void callback(gtk.text_iter.TextIter iter, gtksource.types.BracketMatchType state, gtksource.buffer.Buffer buffer)
iter if found, the location of the matching bracket. (optional)
state state of bracket matching. (optional)
buffer the instance the signal is connected to (optional)
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to BracketMatched signal.
iter is set to a valid iterator pointing to the matching bracket if state is gtksource.types.BracketMatchType.Found. Otherwise iter is meaningless.
The signal is emitted only when the state changes, typically when the cursor moves.
A use-case for this signal is to show messages in a gtk.statusbar.Statusbar.