From 70bfe6c31f33d58737febbc82597e84d8d41cee6 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Tue, 13 Aug 2019 19:06:23 +1000 Subject: [PATCH] Fix luacheck line-too-long warning --- src/argparse.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/argparse.lua b/src/argparse.lua index 2f95680..e48337a 100644 --- a/src/argparse.lua +++ b/src/argparse.lua @@ -1273,7 +1273,10 @@ function Parser:_bash_cmd_completions(buf) if #self._commands > 0 then table.insert(cmd_buf, (" "):rep(12) .. 'COMPREPLY=($(compgen -W "' .. self:_get_commands() .. '" -- "$cur"))') elseif self._is_help_command then - table.insert(cmd_buf, (" "):rep(12) .. 'COMPREPLY=($(compgen -W "' .. self._parent:_get_commands() .. '" -- "$cur"))') + table.insert(cmd_buf, (" "):rep(12) + .. 'COMPREPLY=($(compgen -W "' + .. self._parent:_get_commands() + .. '" -- "$cur"))') end if #cmd_buf > 0 then table.insert(buf, (" "):rep(8) .. "'" .. self:_get_fullname(true) .. "')")