comparison src/proto/edit.pro @ 20237:918245588b50 v8.2.0674

patch 8.2.0674: some source files are too big Commit: https://github.com/vim/vim/commit/11abd095210fc84e5dcee87b9baed86061caefe4 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 1 14:26:37 2020 +0200 patch 8.2.0674: some source files are too big Problem: Some source files are too big. Solution: Move text formatting functions to a new file. (Yegappan Lakshmanan, closes #6021)
author Bram Moolenaar <Bram@vim.org>
date Fri, 01 May 2020 14:30:04 +0200
parents 14d2a210fab1
children 335365fcbb60
comparison
equal deleted inserted replaced
20236:366b1c4f8c49 20237:918245588b50
11 void undisplay_dollar(void); 11 void undisplay_dollar(void);
12 void truncate_spaces(char_u *line); 12 void truncate_spaces(char_u *line);
13 void backspace_until_column(int col); 13 void backspace_until_column(int col);
14 int get_literal(void); 14 int get_literal(void);
15 void insertchar(int c, int flags, int second_indent); 15 void insertchar(int c, int flags, int second_indent);
16 void auto_format(int trailblank, int prev_line);
17 int comp_textwidth(int ff);
18 void start_arrow(pos_T *end_insert_pos); 16 void start_arrow(pos_T *end_insert_pos);
19 int stop_arrow(void); 17 int stop_arrow(void);
20 void set_last_insert(int c); 18 void set_last_insert(int c);
21 void free_last_insert(void); 19 void free_last_insert(void);
22 char_u *add_char2buf(int c, char_u *s); 20 char_u *add_char2buf(int c, char_u *s);