point 130 lib/widget/input.c in->mark = mark ? in->point : -1; point 140 lib/widget/input.c *start_mark = MIN (in->mark, in->point); point 141 lib/widget/input.c *end_mark = MAX (in->mark, in->point); point 281 lib/widget/input.c in->point = 0; point 290 lib/widget/input.c in->point = str_length (in->buffer->str); point 299 lib/widget/input.c if (in->point > 0) point 303 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 304 lib/widget/input.c in->point -= str_cprev_noncomb_char (&act, in->buffer->str); point 317 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 319 lib/widget/input.c in->point += str_cnext_noncomb_char (&act); point 330 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 332 lib/widget/input.c for (; p[0] != '\0' && (str_isspace (p) || str_ispunct (p)); in->point++) point 335 lib/widget/input.c for (; p[0] != '\0' && !str_isspace (p) && !str_ispunct (p); in->point++) point 346 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 348 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 361 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 377 lib/widget/input.c if (in->point == 0) point 380 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 381 lib/widget/input.c start = in->point - str_cprev_noncomb_char (&act, in->buffer->str); point 382 lib/widget/input.c move_buffer_backward (in, start, in->point); point 385 lib/widget/input.c in->point = start; point 426 lib/widget/input.c in->point = first; point 462 lib/widget/input.c ins_point = str_offset_to_pos (in->buffer->str, in->point); point 464 lib/widget/input.c in->point++; point 478 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 479 lib/widget/input.c end = in->point + str_cnext_noncomb_char (&act); point 480 lib/widget/input.c move_buffer_backward (in, in->point, end); point 490 lib/widget/input.c int old_point = in->point; point 494 lib/widget/input.c new_point = in->point; point 495 lib/widget/input.c in->point = old_point; point 507 lib/widget/input.c int old_point = in->point; point 511 lib/widget/input.c new_point = in->point; point 512 lib/widget/input.c in->point = old_point; point 541 lib/widget/input.c chp = str_offset_to_pos (in->buffer->str, in->point); point 555 lib/widget/input.c in->point = 0; point 645 lib/widget/input.c in->point = 0; point 742 lib/widget/input.c delete_region (in, in->point, MAX (in->mark, 0)); point 751 lib/widget/input.c copy_region (in, MAX (in->mark, 0), in->point); point 758 lib/widget/input.c copy_region (in, m, in->point); point 759 lib/widget/input.c delete_region (in, in->point, m); point 922 lib/widget/input.c prev_point = in->point; point 936 lib/widget/input.c if (in->mark == in->point) point 1065 lib/widget/input.c widget_gotoyx (in, 0, str_term_width2 (in->buffer->str, in->point) - in->term_first_shown); point 1150 lib/widget/input.c in->point = str_length (in->buffer->str); point 1211 lib/widget/input.c if (pos != in->point) point 1213 lib/widget/input.c in->point = pos; point 1248 lib/widget/input.c pw = str_term_width2 (in->buffer->str, in->point); point 1354 lib/widget/input.c in->point = 0; point 52 lib/widget/input.h int point; /* cursor position in the input line in characters */ point 1019 lib/widget/input_complete.c in->point += str_length (in->buffer->str) - buff_len; point 1211 lib/widget/input_complete.c if (in->completions != NULL && str_offset_to_pos (in->buffer->str, in->point) != end) point 1420 lib/widget/input_complete.c end = str_offset_to_pos (in->buffer->str, in->point); point 1423 lib/widget/input_complete.c if (in->point != 0) point 1428 lib/widget/input_complete.c for (i = in->point - 1; i > 0; i--) point 1475 src/filemanager/filemanager.c cmdline->point = 0; point 103 src/filemanager/panelize.c pname->point = 0; point 659 src/subshell/common.c cmdline->point = cursor_position; point 1479 src/subshell/common.c pos = str_length (cmdline->buffer->str) - cmdline->point; point 202 tests/lib/widget/complete_engine.c w_input->point = data->input_point;