From: Daniel Carl Date: Sat, 28 Sep 2013 23:09:47 +0000 (+0200) Subject: Fixed wrong ex command code in completion. X-Git-Url: https://git.owens.tech/assets/static/git.owens.tech/assets/static/git.owens.tech/git?a=commitdiff_plain;h=c282b20ee88553e560fb47cad04911b94cec7748;p=vimb.git Fixed wrong ex command code in completion. --- diff --git a/src/ex.c b/src/ex.c index 3946970..599f57a 100644 --- a/src/ex.c +++ b/src/ex.c @@ -903,7 +903,7 @@ static gboolean ex_complete(short direction) found = setting_fill_completion(store, in); break; - case EX_BMR: + case EX_BMA: sort = true; found = bookmark_fill_tag_completion(store, in); break;