summaryrefslogtreecommitdiff
path: root/src/fe-text/gui-readline.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-09-17 00:52:55 -0300
committerdequis <dx@dxzone.com.ar>2015-09-27 16:08:07 -0300
commit9a6b2dedcce165211892b39cf7455314dfde57fb (patch)
tree5481b2b529e69bd80d7826a27c5bc40e05f2b4c5 /src/fe-text/gui-readline.c
parent6888fc5fc74936af74fd30042e45652951648ea4 (diff)
downloadirssi-9a6b2dedcce165211892b39cf7455314dfde57fb.zip
Improve bracketed paste start/end detection
- Use a keybinding to detect the start of a bracketed paste - Iterate over the paste buffer looking for the end marker
Diffstat (limited to 'src/fe-text/gui-readline.c')
-rw-r--r--src/fe-text/gui-readline.c52
1 files changed, 34 insertions, 18 deletions
diff --git a/src/fe-text/gui-readline.c b/src/fe-text/gui-readline.c
index 87c824cf..51b9f758 100644
--- a/src/fe-text/gui-readline.c
+++ b/src/fe-text/gui-readline.c
@@ -665,37 +665,44 @@ static void sig_input(void)
/* use the bracketed paste mode to detect when the user pastes
* some text into the entry */
- if (paste_use_bracketed_mode != FALSE && paste_buffer->len > 12) {
- /* try to find the start/end sequence, we know that we
- * either find those at the start/end of the buffer or
- * we don't find those at all. */
- int seq_start = !memcmp(paste_buffer->data, bp_start, sizeof(bp_start)),
- seq_end = !memcmp(paste_buffer->data + paste_buffer->len * g_array_get_element_size(paste_buffer) - sizeof(bp_end), bp_end, sizeof(bp_end));
-
- if (seq_start) {
- paste_bracketed_mode = TRUE;
- /* remove the leading sequence chars */
- g_array_remove_range(paste_buffer, 0, 6);
+ if (paste_bracketed_mode) {
+ int i;
+ int len = paste_buffer->len - G_N_ELEMENTS(bp_end);
+ unichar *ptr = (unichar *) paste_buffer->data;
+
+ if (len <= 0) {
+ return;
}
- if (seq_end) {
- paste_bracketed_mode = FALSE;
- /* remove the trailing sequence chars */
- g_array_set_size(paste_buffer, paste_buffer->len - 6);
- /* decide what to do with the buffer */
- paste_timeout(NULL);
+ for (i = 0; i <= len; i++, ptr++) {
+ if (ptr[0] == bp_end[0] && !memcmp(ptr, bp_end, sizeof(bp_end))) {
+ /* remove the trailing sequence chars */
+ g_array_set_size(paste_buffer, i);
+
+ /* decide what to do with the buffer */
+ paste_timeout(NULL);
+
+ paste_bracketed_mode = FALSE;
+ break;
+ }
}
}
else if (paste_detect_time > 0 && paste_buffer->len >= 3) {
if (paste_timeout_id != -1)
g_source_remove(paste_timeout_id);
paste_timeout_id = g_timeout_add(paste_detect_time, paste_timeout, NULL);
- } else {
+ } else if (!paste_bracketed_mode) {
int i;
for (i = 0; i < paste_buffer->len; i++) {
unichar key = g_array_index(paste_buffer, unichar, i);
signal_emit("gui key pressed", 1, GINT_TO_POINTER(key));
+
+ if (paste_bracketed_mode) {
+ /* just enabled by the signal, remove what was processed so far */
+ g_array_remove_range(paste_buffer, 0, i + 1);
+ return;
+ }
}
g_array_set_size(paste_buffer, 0);
paste_line_count = 0;
@@ -703,6 +710,11 @@ static void sig_input(void)
}
}
+static void key_paste_start(void)
+{
+ paste_bracketed_mode = TRUE;
+}
+
time_t get_idle_time(void)
{
return last_keypress.tv_sec;
@@ -1060,6 +1072,8 @@ void gui_readline_init(void)
key_bind("key", NULL, "meta2-5F", "cend", (SIGNAL_FUNC) key_combo);
key_bind("key", NULL, "meta2-1;5F", "cend", (SIGNAL_FUNC) key_combo);
+ key_bind("paste_start", "Bracketed paste start", "meta2-200~", "paste_start", (SIGNAL_FUNC) key_paste_start);
+
/* cursor movement */
key_bind("backward_character", "Move the cursor a character backward", "left", NULL, (SIGNAL_FUNC) key_backward_character);
key_bind("forward_character", "Move the cursor a character forward", "right", NULL, (SIGNAL_FUNC) key_forward_character);
@@ -1155,6 +1169,8 @@ void gui_readline_deinit(void)
key_configure_freeze();
+ key_unbind("paste_start", (SIGNAL_FUNC) key_paste_start);
+
key_unbind("backward_character", (SIGNAL_FUNC) key_backward_character);
key_unbind("forward_character", (SIGNAL_FUNC) key_forward_character);
key_unbind("backward_word", (SIGNAL_FUNC) key_backward_word);