2008-09-29 16:49:18 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
2008-11-25 21:03:58 +01:00
|
|
|
-- @author Sébastien Gross <seb-awesome@chezwam.org>
|
|
|
|
-- @copyright 2008 Julien Danjou, Sébastien Gross
|
2008-09-29 16:49:18 +02:00
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Grab environment we need
|
|
|
|
local io = io
|
2009-01-23 19:02:48 +01:00
|
|
|
local os = os
|
2008-09-29 16:49:18 +02:00
|
|
|
local table = table
|
2008-11-25 21:03:58 +01:00
|
|
|
local math = math
|
2008-12-11 22:14:07 +01:00
|
|
|
local print = print
|
2008-09-29 16:49:18 +02:00
|
|
|
|
|
|
|
--- Completion module for awful
|
|
|
|
module("awful.completion")
|
|
|
|
|
|
|
|
-- mapping of command/completion function
|
|
|
|
local bashcomp_funcs = {}
|
2009-01-05 18:07:06 +01:00
|
|
|
local bashcomp_src = "@SYSCONFDIR@/bash_completion"
|
2008-09-29 16:49:18 +02:00
|
|
|
|
|
|
|
--- Enable programmable bash completion in awful.completion.bash at the price of
|
2008-11-07 14:27:54 +01:00
|
|
|
-- a slight overhead
|
|
|
|
-- @param src The bash completion source file, /etc/bash_completion by default.
|
2008-09-29 16:49:18 +02:00
|
|
|
function bashcomp_load(src)
|
|
|
|
if src then bashcomp_src = src end
|
2008-12-11 22:14:07 +01:00
|
|
|
local c, err = io.popen("/usr/bin/env bash -c 'source " .. bashcomp_src .. "; complete -p'")
|
|
|
|
if c then
|
|
|
|
while true do
|
|
|
|
local line = c:read("*line")
|
|
|
|
if not line then break end
|
|
|
|
-- if a bash function is used for completion, register it
|
|
|
|
if line:match(".* -F .*") then
|
|
|
|
bashcomp_funcs[line:gsub(".* (%S+)$","%1")] = line:gsub(".*-F +(%S+) .*$", "%1")
|
|
|
|
end
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
2008-12-11 22:14:07 +01:00
|
|
|
c:close()
|
|
|
|
else
|
|
|
|
print(err)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-12-25 18:57:39 +01:00
|
|
|
local function bash_escape(str)
|
2009-01-10 14:13:07 +01:00
|
|
|
str = str:gsub(" ", "\\ ")
|
|
|
|
str = str:gsub("%[", "\\[")
|
|
|
|
str = str:gsub("%]", "\\]")
|
|
|
|
str = str:gsub("%(", "\\(")
|
|
|
|
str = str:gsub("%)", "\\)")
|
|
|
|
return str
|
2008-12-25 18:57:39 +01:00
|
|
|
end
|
|
|
|
|
2008-09-29 16:49:18 +02:00
|
|
|
--- Use bash completion system to complete command and filename.
|
|
|
|
-- @param command The command line.
|
|
|
|
-- @param cur_pos The cursor position.
|
|
|
|
-- @param ncomp The element number to complete.
|
|
|
|
-- @return The new command and the new cursor position.
|
|
|
|
function bash(command, cur_pos, ncomp)
|
|
|
|
local wstart = 1
|
|
|
|
local wend = 1
|
|
|
|
local words = {}
|
|
|
|
local cword_index = 0
|
|
|
|
local cword_start = 0
|
|
|
|
local cword_end = 0
|
|
|
|
local i = 1
|
|
|
|
local comptype = "file"
|
|
|
|
|
|
|
|
-- do nothing if we are on a letter, i.e. not at len + 1 or on a space
|
|
|
|
if cur_pos ~= #command + 1 and command:sub(cur_pos, cur_pos) ~= " " then
|
|
|
|
return command, cur_pos
|
|
|
|
elseif #command == 0 then
|
|
|
|
return command, cur_pos
|
|
|
|
end
|
|
|
|
|
|
|
|
while wend <= #command do
|
|
|
|
wend = command:find(" ", wstart)
|
|
|
|
if not wend then wend = #command + 1 end
|
|
|
|
table.insert(words, command:sub(wstart, wend - 1))
|
|
|
|
if cur_pos >= wstart and cur_pos <= wend + 1 then
|
|
|
|
cword_start = wstart
|
|
|
|
cword_end = wend
|
|
|
|
cword_index = i
|
|
|
|
end
|
|
|
|
wstart = wend + 1
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
if cword_index == 1 then
|
|
|
|
comptype = "command"
|
|
|
|
end
|
|
|
|
|
|
|
|
local bash_cmd
|
|
|
|
if bashcomp_funcs[words[1]] then
|
|
|
|
-- fairly complex command with inline bash script to get the possible completions
|
|
|
|
bash_cmd = "/usr/bin/env bash -c 'source " .. bashcomp_src .. "; " ..
|
|
|
|
"__print_completions() { for ((i=0;i<${#COMPREPLY[*]};i++)); do echo ${COMPREPLY[i]}; done }; " ..
|
|
|
|
"COMP_WORDS=(" .. command .."); COMP_LINE=\"" .. command .. "\"; " ..
|
|
|
|
"COMP_COUNT=" .. cur_pos .. "; COMP_CWORD=" .. cword_index-1 .. "; " ..
|
|
|
|
bashcomp_funcs[words[1]] .. "; __print_completions | sort -u'"
|
|
|
|
else
|
|
|
|
bash_cmd = "/usr/bin/env bash -c 'compgen -A " .. comptype .. " " .. words[cword_index] .. "'"
|
|
|
|
end
|
2008-12-11 22:14:07 +01:00
|
|
|
local c, err = io.popen(bash_cmd)
|
2008-09-29 16:49:18 +02:00
|
|
|
local output = {}
|
|
|
|
i = 0
|
2008-12-11 22:14:07 +01:00
|
|
|
if c then
|
|
|
|
while true do
|
|
|
|
local line = c:read("*line")
|
|
|
|
if not line then break end
|
2009-01-23 19:02:48 +01:00
|
|
|
if os.execute("test -d " .. line) == 0 then
|
|
|
|
line = line .. "/"
|
|
|
|
end
|
2008-12-25 18:57:39 +01:00
|
|
|
table.insert(output, bash_escape(line))
|
2008-12-11 22:14:07 +01:00
|
|
|
end
|
2008-09-29 16:49:18 +02:00
|
|
|
|
2008-12-11 22:14:07 +01:00
|
|
|
c:close()
|
|
|
|
else
|
|
|
|
print(err)
|
|
|
|
end
|
2008-09-29 16:49:18 +02:00
|
|
|
|
|
|
|
-- no completion, return
|
|
|
|
if #output == 0 then
|
|
|
|
return command, cur_pos
|
|
|
|
end
|
|
|
|
|
|
|
|
-- cycle
|
|
|
|
while ncomp > #output do
|
|
|
|
ncomp = ncomp - #output
|
|
|
|
end
|
|
|
|
|
|
|
|
local str = command:sub(1, cword_start - 1) .. output[ncomp] .. command:sub(cword_end)
|
|
|
|
cur_pos = cword_end + #output[ncomp] + 1
|
|
|
|
|
|
|
|
return str, cur_pos
|
|
|
|
end
|
|
|
|
|
2008-11-25 21:03:58 +01:00
|
|
|
--- Run a generic completion.
|
|
|
|
-- For this function to run properly the awful.completion.keyword table should
|
|
|
|
-- be fed up with all keywords. The completion is run against these keywords.
|
|
|
|
-- @param text The current text the user had typed yet.
|
|
|
|
-- @param cur_pos The current cursor position.
|
|
|
|
-- @param ncomp The number of yet requested completion using current text.
|
awful.completion: remove keywords global variable
* move keywords global variable to generic() last parameter.
This prevents from having table clash.
Please udate you configuration according this feature in your
awful.prompt.run() calls.
If keywords parameter is missing then no completion would be
done.
Before:
awful.completion.keywords = kw
awful.prompt.run( [ ... ],
function(t, p, n) return awful.completion.generic(t, p, n) end,
[ ... ] )
Now:
awful.prompt.run( [ ... ],
function(t, p, n) return awful.completion.generic(t, p, n, kw) end,
[ ... ] )
Signed-off-by: Sébastien Gross <seb-awesome@chezwam.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-12-18 13:18:07 +01:00
|
|
|
-- @param keywords The keywords table uised for completion.
|
2008-11-25 21:03:58 +01:00
|
|
|
-- @return The new match and the new cursor position.
|
awful.completion: remove keywords global variable
* move keywords global variable to generic() last parameter.
This prevents from having table clash.
Please udate you configuration according this feature in your
awful.prompt.run() calls.
If keywords parameter is missing then no completion would be
done.
Before:
awful.completion.keywords = kw
awful.prompt.run( [ ... ],
function(t, p, n) return awful.completion.generic(t, p, n) end,
[ ... ] )
Now:
awful.prompt.run( [ ... ],
function(t, p, n) return awful.completion.generic(t, p, n, kw) end,
[ ... ] )
Signed-off-by: Sébastien Gross <seb-awesome@chezwam.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-12-18 13:18:07 +01:00
|
|
|
function generic(text, cur_pos, ncomp, keywords)
|
2008-11-25 21:03:58 +01:00
|
|
|
-- The keywords table may be empty
|
|
|
|
if #keywords == 0 then
|
|
|
|
return text, #text + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
-- if no text had been typed yet, then we could start cycling around all
|
|
|
|
-- keywords with out filtering and move the cursor at the end of keyword
|
|
|
|
if text == nil or #text == 0 then
|
|
|
|
ncomp = math.mod(ncomp - 1, #keywords) + 1
|
|
|
|
return keywords[ncomp], #keywords[ncomp] + 2
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Filter out only keywords starting with text
|
|
|
|
local matches = {}
|
|
|
|
table.foreach(keywords, function(_, x)
|
|
|
|
if x:sub(1 , #text) == text then
|
|
|
|
table.insert(matches, x)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- if there are no matches just leave out with the current text and position
|
|
|
|
if #matches == 0 then
|
|
|
|
return text, #text + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
-- cycle around all matches
|
|
|
|
ncomp = math.mod(ncomp - 1, #matches) + 1
|
|
|
|
return matches[ncomp], #matches[ncomp] + 1
|
|
|
|
end
|
|
|
|
|
2008-09-29 16:49:18 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|