diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-01-26 10:58:02 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-03 09:36:48 +0100 |
commit | 5e64f0abc50a6c4e4f62e2452e84deaeb1c29c48 (patch) | |
tree | 2486fc21e399b2337b6cd630504ea4afa681f9db | |
parent | gentoo-common: Support collapsing PYTHON_COMPAT into {x..y} (diff) | |
download | gentoo-syntax-5e64f0abc50a6c4e4f62e2452e84deaeb1c29c48.tar.gz gentoo-syntax-5e64f0abc50a6c4e4f62e2452e84deaeb1c29c48.tar.bz2 gentoo-syntax-5e64f0abc50a6c4e4f62e2452e84deaeb1c29c48.zip |
gentoo-common: Remove unnecessary continue
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | plugin/gentoo-common.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugin/gentoo-common.vim b/plugin/gentoo-common.vim index bc4da76..4c4c152 100644 --- a/plugin/gentoo-common.vim +++ b/plugin/gentoo-common.vim @@ -73,7 +73,6 @@ fun! GentooGetPythonTargets() let l:m = l:py->matchstr("^python3.*")->matchstr("\\d*$") if !empty(l:m) eval l:py3s->add(l:m) - continue else eval l:others->add(l:py) endif |