Lines Matching refs:quotechar
1656 int quotechar, in find_next_quote() argument
1668 else if (c == quotechar) in find_next_quote()
1688 int quotechar, in find_prev_quote() argument
1704 else if (line[col_start] == quotechar) in find_prev_quote()
1719 int quotechar) // Quote character in current_quote() argument
1777 && line[VIsual.col - 1] == quotechar in current_quote()
1779 && line[curwin->w_cursor.col + 1] == quotechar; in current_quote()
1786 && line[curwin->w_cursor.col - 1] == quotechar in current_quote()
1788 && line[VIsual.col + 1] == quotechar; in current_quote()
1795 if (line[i++] == quotechar) in current_quote()
1802 if (!vis_empty && line[col_start] == quotechar) in current_quote()
1810 col_start = find_next_quote(line, col_start + 1, quotechar, NULL); in current_quote()
1813 col_end = find_next_quote(line, col_start + 1, quotechar, in current_quote()
1824 col_end = find_prev_quote(line, col_start, quotechar, NULL); in current_quote()
1825 if (line[col_end] != quotechar) in current_quote()
1827 col_start = find_prev_quote(line, col_end, quotechar, in current_quote()
1829 if (line[col_start] != quotechar) in current_quote()
1839 if (line[col_start] == quotechar || !vis_empty) in current_quote()
1846 first_col = find_next_quote(line, col_start, quotechar, NULL); in current_quote()
1848 first_col = find_prev_quote(line, col_start, quotechar, NULL); in current_quote()
1859 col_start = find_next_quote(line, col_start, quotechar, NULL); in current_quote()
1863 col_end = find_next_quote(line, col_start + 1, quotechar, in current_quote()
1877 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe); in current_quote()
1878 if (line[col_start] != quotechar) in current_quote()
1881 col_start = find_next_quote(line, col_start, quotechar, NULL); in current_quote()
1887 col_end = find_next_quote(line, col_start + 1, quotechar, in current_quote()
1919 || (line[VIsual.col] != quotechar in current_quote()
1921 || line[VIsual.col - 1] != quotechar))))) in current_quote()
1954 && line[VIsual.col] != quotechar in current_quote()
1956 || line[VIsual.col + 1] != quotechar))) in current_quote()