diff --git a/src/context/lex/lex.go b/src/context/lex/lex.go index 3b1ee784..786e3cde 100644 --- a/src/context/lex/lex.go +++ b/src/context/lex/lex.go @@ -290,7 +290,15 @@ func (lex *LEX) Start(m *ctx.Message, arg ...string) bool { // {{{ // }}} func (lex *LEX) Close(m *ctx.Message, arg ...string) bool { // {{{ - return false + switch lex.Context { + case m.Target: + if lex.Context == Index { + return false + } + case m.Source: + } + + return true } // }}}