diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-03-25 17:21:53 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-04-10 16:38:11 -0400 |
commit | 5bc151c2a401aa2b91adc783b9155895c6a483d1 (patch) | |
tree | c8b3f59b38422e9611b33c6607dd13909059a256 /src | |
parent | b0cc6eadd79af1fcd31f0c02d6e7c77c4c6d69bc (diff) | |
download | rneovim-5bc151c2a401aa2b91adc783b9155895c6a483d1.tar.gz rneovim-5bc151c2a401aa2b91adc783b9155895c6a483d1.tar.bz2 rneovim-5bc151c2a401aa2b91adc783b9155895c6a483d1.zip |
Remove unused 'if_[language].txt': Clean up
Regarding |script-here|: despite being a language agnostic piece of
advice, it was in `if_perl.txt`. Regardless, we now only have one
support for one legacy plugin interface, so put it in `if_pyth.txt`
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 4bd08a31ca..90ab471818 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -17898,7 +17898,7 @@ void ex_function(exarg_T *eap) (p[2] == 's')))))) skip_until = vim_strsave((char_u *)"."); - /* Check for ":python <<EOF", ":tcl <<EOF", etc. */ + // Check for ":python <<EOF", ":lua <<EOF", etc. arg = skipwhite(skiptowhite(p)); if (arg[0] == '<' && arg[1] =='<' && ((p[0] == 'p' && p[1] == 'y' |