diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/insexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/insexpand.c b/src/nvim/insexpand.c index 78654d8b14..31275ff339 100644 --- a/src/nvim/insexpand.c +++ b/src/nvim/insexpand.c @@ -3334,7 +3334,7 @@ static bool get_next_completion_match(int type, ins_compl_next_state_T *st, pos_ static void get_next_bufname_token(void) { FOR_ALL_BUFFERS(b) { - if (b->b_p_bl) { + if (b->b_p_bl && b->b_sfname != NULL) { char *start = get_past_head(b->b_sfname); char *current = start; char *p = (char *)path_next_component(start); |