aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-02-28 00:07:31 +0100
committerGitHub <noreply@github.com>2022-02-28 00:07:31 +0100
commitfad33b095fcc2607ea9f058b5fa76cda9483a24e (patch)
tree8d453a80320e49c2748f03240db8a4338384c9a1 /src/nvim/ex_getln.c
parent1b5767aa3480c0cdc43f7a4b78f36a14e85a182f (diff)
parent991e472881bf29805982b402c1a010cde051ded3 (diff)
downloadrneovim-fad33b095fcc2607ea9f058b5fa76cda9483a24e.tar.gz
rneovim-fad33b095fcc2607ea9f058b5fa76cda9483a24e.tar.bz2
rneovim-fad33b095fcc2607ea9f058b5fa76cda9483a24e.zip
Merge pull request #14661 from tjdevries/tjdevries/lua_autocmd_v2
lua: autocmds take 2: electric autoroo
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index ed4475eb1a..30287cd6f2 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -5049,8 +5049,8 @@ static int ExpandFromContext(expand_T *xp, char_u *pat, int *num_file, char_u **
{ EXPAND_SYNTAX, get_syntax_name, true, true },
{ EXPAND_SYNTIME, get_syntime_arg, true, true },
{ EXPAND_HIGHLIGHT, (ExpandFunc)get_highlight_name, true, true },
- { EXPAND_EVENTS, get_event_name, true, true },
- { EXPAND_AUGROUP, get_augroup_name, true, true },
+ { EXPAND_EVENTS, expand_get_event_name, true, true },
+ { EXPAND_AUGROUP, expand_get_augroup_name, true, true },
{ EXPAND_CSCOPE, get_cscope_name, true, true },
{ EXPAND_SIGN, get_sign_name, true, true },
{ EXPAND_PROFILE, get_profile_name, true, true },