comparison src/proto/edit.pro @ 22077:335365fcbb60 v8.2.1588

patch 8.2.1588: cannot read back the prompt of a prompt buffer Commit: https://github.com/vim/vim/commit/077cc7aa0e0c431e97795612374fe17fe7c88803 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 4 16:35:35 2020 +0200 patch 8.2.1588: cannot read back the prompt of a prompt buffer Problem: Cannot read back the prompt of a prompt buffer. Solution: Add prompt_getprompt(). (Ben Jackson, closes https://github.com/vim/vim/issues/6851)
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Sep 2020 16:45:04 +0200
parents 918245588b50
children 2cc0de1e05a6
comparison
equal deleted inserted replaced
22076:1b8ace0b3487 22077:335365fcbb60
2 int edit(int cmdchar, int startln, long count); 2 int edit(int cmdchar, int startln, long count);
3 int ins_need_undo_get(void); 3 int ins_need_undo_get(void);
4 void ins_redraw(int ready); 4 void ins_redraw(int ready);
5 int decodeModifyOtherKeys(int c); 5 int decodeModifyOtherKeys(int c);
6 void edit_putchar(int c, int highlight); 6 void edit_putchar(int c, int highlight);
7 char_u *buf_prompt_text(buf_T* buf);
7 char_u *prompt_text(void); 8 char_u *prompt_text(void);
8 int prompt_curpos_editable(void); 9 int prompt_curpos_editable(void);
9 void edit_unputchar(void); 10 void edit_unputchar(void);
10 void display_dollar(colnr_T col); 11 void display_dollar(colnr_T col);
11 void undisplay_dollar(void); 12 void undisplay_dollar(void);