diff src/proto/edit.pro @ 10277:154d5a2e7395 v8.0.0035

commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 15 17:06:47 2016 +0200 patch 8.0.0035 Problem: Order of matches for 'omnifunc' is messed up. (Danny Su) Solution: Do not set compl_curr_match when called from complete_check(). (closes https://github.com/vim/vim/issues/1168)
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Oct 2016 17:15:05 +0200
parents 219d80fee92f
children 27be410d6d29
line wrap: on
line diff
--- a/src/proto/edit.pro
+++ b/src/proto/edit.pro
@@ -15,7 +15,7 @@ char_u *find_word_start(char_u *ptr);
 char_u *find_word_end(char_u *ptr);
 int ins_compl_active(void);
 int ins_compl_add_tv(typval_T *tv, int dir);
-void ins_compl_check_keys(int frequency);
+void ins_compl_check_keys(int frequency, int in_compl_func);
 int get_literal(void);
 void insertchar(int c, int flags, int second_indent);
 void auto_format(int trailblank, int prev_line);