point 133 lib/widget/input.c in->mark = mark ? in->point : -1; point 143 lib/widget/input.c *start_mark = MIN (in->mark, in->point); point 144 lib/widget/input.c *end_mark = MAX (in->mark, in->point); point 282 lib/widget/input.c in->point = 0; point 291 lib/widget/input.c in->point = str_length (in->buffer->str); point 300 lib/widget/input.c if (in->point > 0) point 304 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 305 lib/widget/input.c in->point -= str_cprev_noncomb_char (&act, in->buffer->str); point 318 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 320 lib/widget/input.c in->point += str_cnext_noncomb_char (&act); point 331 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 333 lib/widget/input.c for (; p[0] != '\0' && (str_isspace (p) || str_ispunct (p)); in->point++) point 336 lib/widget/input.c for (; p[0] != '\0' && !str_isspace (p) && !str_ispunct (p); in->point++) point 347 lib/widget/input.c p = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 349 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 362 lib/widget/input.c for (; p != in->buffer->str; in->point--) point 378 lib/widget/input.c if (in->point == 0) point 381 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 382 lib/widget/input.c start = in->point - str_cprev_noncomb_char (&act, in->buffer->str); point 383 lib/widget/input.c move_buffer_backward (in, start, in->point); point 386 lib/widget/input.c in->point = start; point 427 lib/widget/input.c in->point = first; point 463 lib/widget/input.c ins_point = str_offset_to_pos (in->buffer->str, in->point); point 465 lib/widget/input.c in->point++; point 479 lib/widget/input.c act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point); point 480 lib/widget/input.c end = in->point + str_cnext_noncomb_char (&act); point 481 lib/widget/input.c move_buffer_backward (in, in->point, end); point 491 lib/widget/input.c int old_point = in->point; point 495 lib/widget/input.c new_point = in->point; point 496 lib/widget/input.c in->point = old_point; point 508 lib/widget/input.c int old_point = in->point; point 512 lib/widget/input.c new_point = in->point; point 513 lib/widget/input.c in->point = old_point; point 542 lib/widget/input.c chp = str_offset_to_pos (in->buffer->str, in->point); point 556 lib/widget/input.c in->point = 0; point 646 lib/widget/input.c in->point = 0; point 743 lib/widget/input.c delete_region (in, in->point, MAX (in->mark, 0)); point 752 lib/widget/input.c copy_region (in, MAX (in->mark, 0), in->point); point 759 lib/widget/input.c copy_region (in, m, in->point); point 760 lib/widget/input.c delete_region (in, in->point, m); point 917 lib/widget/input.c prev_point = in->point; point 931 lib/widget/input.c if (in->mark == in->point) point 1060 lib/widget/input.c widget_gotoyx (in, 0, str_term_width2 (in->buffer->str, in->point) - in->term_first_shown); point 1145 lib/widget/input.c in->point = str_length (in->buffer->str); point 1173 lib/widget/input.c if (pos != in->point) point 1175 lib/widget/input.c in->point = pos; point 1210 lib/widget/input.c pw = str_term_width2 (in->buffer->str, in->point); point 1316 lib/widget/input.c in->point = 0; point 52 lib/widget/input.h int point; /* cursor position in the input line in characters */ point 979 lib/widget/input_complete.c in->point += str_length (in->buffer->str) - buff_len; point 1171 lib/widget/input_complete.c if (in->completions != NULL && str_offset_to_pos (in->buffer->str, in->point) != end) point 1387 lib/widget/input_complete.c end = str_offset_to_pos (in->buffer->str, in->point); point 1390 lib/widget/input_complete.c if (in->point != 0) point 1395 lib/widget/input_complete.c for (i = in->point - 1; i > 0; i--) point 1474 src/filemanager/filemanager.c cmdline->point = 0; point 131 src/filemanager/panelize.c pname->point = 0; point 668 src/subshell/common.c cmdline->point = cursor_position; point 1498 src/subshell/common.c pos = str_length (s) - cmdline->point; point 202 tests/lib/widget/complete_engine.c w_input->point = data->input_point;