point 138 lib/widget/input.c in->mark = mark ? in->point : -1; point 148 lib/widget/input.c *start_mark = MIN (in->mark, in->point); point 149 lib/widget/input.c *end_mark = MAX (in->mark, in->point); point 287 lib/widget/input.c in->point = 0; point 296 lib/widget/input.c in->point = str_length (in->buffer->str); point 305 lib/widget/input.c if (in->point > 0) point 309 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 310 lib/widget/input.c in->point -= str_cprev_noncomb_char (&act, in->buffer->str); point 323 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 325 lib/widget/input.c in->point += str_cnext_noncomb_char (&act); point 336 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 338 lib/widget/input.c for (; p[0] != '\0' && (str_isspace (p) || str_ispunct (p)); in->point++) point 341 lib/widget/input.c for (; p[0] != '\0' && !str_isspace (p) && !str_ispunct (p); in->point++) point 352 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 354 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 367 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 383 lib/widget/input.c if (in->point == 0) point 386 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 387 lib/widget/input.c start = in->point - str_cprev_noncomb_char (&act, in->buffer->str); point 388 lib/widget/input.c move_buffer_backward (in, start, in->point); point 391 lib/widget/input.c in->point = start; point 432 lib/widget/input.c in->point = first; point 468 lib/widget/input.c ins_point = str_offset_to_pos (in->buffer->str, in->point); point 470 lib/widget/input.c in->point++; point 484 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 485 lib/widget/input.c end = in->point + str_cnext_noncomb_char (&act); point 486 lib/widget/input.c move_buffer_backward (in, in->point, end); point 496 lib/widget/input.c int old_point = in->point; point 500 lib/widget/input.c new_point = in->point; point 501 lib/widget/input.c in->point = old_point; point 513 lib/widget/input.c int old_point = in->point; point 517 lib/widget/input.c new_point = in->point; point 518 lib/widget/input.c in->point = old_point; point 547 lib/widget/input.c chp = str_offset_to_pos (in->buffer->str, in->point); point 561 lib/widget/input.c in->point = 0; point 651 lib/widget/input.c in->point = 0; point 748 lib/widget/input.c delete_region (in, in->point, MAX (in->mark, 0)); point 757 lib/widget/input.c copy_region (in, MAX (in->mark, 0), in->point); point 764 lib/widget/input.c copy_region (in, m, in->point); point 765 lib/widget/input.c delete_region (in, in->point, m); point 925 lib/widget/input.c prev_point = in->point; point 939 lib/widget/input.c if (in->mark == in->point) point 1068 lib/widget/input.c widget_gotoyx (in, 0, str_term_width2 (in->buffer->str, in->point) - in->term_first_shown); point 1142 lib/widget/input.c in->point = str_length (in->buffer->str); point 1170 lib/widget/input.c if (pos != in->point) point 1172 lib/widget/input.c in->point = pos; point 1207 lib/widget/input.c pw = str_term_width2 (in->buffer->str, in->point); point 1313 lib/widget/input.c in->point = 0; point 52 lib/widget/input.h int point; // cursor position in the input line in characters point 975 lib/widget/input_complete.c in->point += str_length (in->buffer->str) - buff_len; point 1167 lib/widget/input_complete.c if (in->completions != NULL && str_offset_to_pos (in->buffer->str, in->point) != end) point 1381 lib/widget/input_complete.c end = str_offset_to_pos (in->buffer->str, in->point); point 1384 lib/widget/input_complete.c if (in->point != 0) point 1389 lib/widget/input_complete.c for (i = in->point - 1; i > 0; i--) point 1441 src/filemanager/filemanager.c cmdline->point = 0; point 134 src/filemanager/panelize.c pname->point = 0; point 772 src/subshell/common.c cmdline->point = cursor_position; point 1889 src/subshell/common.c const int pos = (int) (str_length (s) - cmdline->point); point 131 tests/lib/widget/complete_engine.c w_input->point = data->input_point;