Fix modeline.kak declaring the same command twice

This commit is contained in:
Maxime Coste 2017-01-14 14:47:57 +00:00
parent e7e72747ed
commit ec618357de

View File

@ -11,7 +11,7 @@
# and the end of the buffer
decl int modelines 5
def -hidden modeline-parse %{
def -hidden modeline-parse-impl %{
%sh{
# Translate a vim option into the corresponding kakoune one
function translate_opt_vim {
@ -103,6 +103,6 @@ def modeline-parse -docstring "Read and interpret vi-format modelines at the beg
try %{ eval -draft %{
exec \%s\`|.\'<ret> %opt{modelines}k <a-x> %opt{modelines}X \
s^[^\s]+?\s(vim?|kak(oune)?):\s?[^\n]+<ret>
eval -draft -itersel modeline-parse
eval -draft -itersel modeline-parse-impl
} }
}