diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-09 09:18:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 09:18:21 +0800 |
commit | 84378c4dd56db9846b70a333530505a8048bd26e (patch) | |
tree | 7c9cf6e4c0e1080dd99cca28da74497654830d71 /src | |
parent | 44fc2a6d7e642d5b02c2fc7de11f478401a51bb2 (diff) | |
download | rneovim-84378c4dd56db9846b70a333530505a8048bd26e.tar.gz rneovim-84378c4dd56db9846b70a333530505a8048bd26e.tar.bz2 rneovim-84378c4dd56db9846b70a333530505a8048bd26e.zip |
test(old): remove python2 tests (#23547)
Because python2 provider is no longer supported.
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 cb1f4d26fb..5c05b8faf7 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -8654,7 +8654,7 @@ bool eval_has_provider(const char *feat) return false; } - char name[32]; // Normalized: "python_compiled" => "python". + char name[32]; // Normalized: "python3_compiled" => "python3". snprintf(name, sizeof(name), "%s", feat); strchrsub(name, '_', '\0'); // Chop any "_xx" suffix. |