![]() |
![]() |
![]() |
GtkSourceView 3 Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#include <gtksourceview/gtksource.h> gchar * gtk_source_utils_unescape_search_text (const gchar *text
); gchar * gtk_source_utils_escape_search_text (const gchar *text
);
gchar * gtk_source_utils_unescape_search_text
(const gchar *text
);
Use this function before gtk_source_buffer_set_search_text()
, to unescape
certain sequences of characters: \n, \r, \t and \\. The purpose is to easily
write those characters in a search entry.
See also: gtk_source_utils_escape_search_text()
.
|
the text to unescape. |
Returns : |
the unescaped text . |
Since 3.10
gchar * gtk_source_utils_escape_search_text (const gchar *text
);
Use this function after gtk_source_buffer_get_search_text()
, to escape
certain characters: \n, \r, \t and \.
See also: gtk_source_utils_unescape_search_text()
.
|
the text to escape. |
Returns : |
the escaped text . |
Since 3.10