Merge pull request #789 from aroig/gh/layout-names
fixes to keyboard layout names
This commit is contained in:
commit
fdc25bbb99
|
@ -214,7 +214,7 @@ function keyboardlayout.get_groups_from_group_names(group_names)
|
|||
end
|
||||
|
||||
if section then
|
||||
section = string.gsub(section, "%(([%w_]+)%)", "%1")
|
||||
section = string.gsub(section, "%(([%w-_]+)%)", "%1")
|
||||
end
|
||||
|
||||
table.insert(layout_groups, { vendor = vendor,
|
||||
|
@ -241,10 +241,7 @@ local function update_layout(self)
|
|||
layouts[1].group_idx = 0
|
||||
end
|
||||
for _, v in ipairs(layouts) do
|
||||
local layout_name = v.file
|
||||
if v.section ~= nil then
|
||||
layout_name = layout_name .. "(" .. v.section .. ")"
|
||||
end
|
||||
local layout_name = self.layout_name(v)
|
||||
-- Please note that numbers of groups reported by xkb_get_group_names
|
||||
-- is greater by one than the real group number.
|
||||
self._layout[v.group_idx - 1] = layout_name
|
||||
|
@ -260,7 +257,13 @@ function keyboardlayout.new()
|
|||
|
||||
self.widget = widget
|
||||
|
||||
update_layout(self);
|
||||
self.layout_name = function(v)
|
||||
local name = v.file
|
||||
if v.section ~= nil then
|
||||
name = name .. "(" .. v.section .. ")"
|
||||
end
|
||||
return name
|
||||
end
|
||||
|
||||
self.next_layout = function()
|
||||
self.set_layout((self._current + 1) % (#self._layout + 1))
|
||||
|
@ -275,6 +278,8 @@ function keyboardlayout.new()
|
|||
awesome.xkb_set_layout_group(group_number);
|
||||
end
|
||||
|
||||
update_layout(self);
|
||||
|
||||
-- callback for processing layout changes
|
||||
capi.awesome.connect_signal("xkb::map_changed",
|
||||
function () update_layout(self) end)
|
||||
|
|
|
@ -23,6 +23,9 @@ describe("awful.widget.keyboardlayout get_groups_from_group_names", function()
|
|||
{ file = "de", group_idx = 1 },
|
||||
{ file = "jp", group_idx = 1 }
|
||||
},
|
||||
["us(altgr-intl)"] = {
|
||||
{ file = "us", group_idx = 1, section = "altgr-intl" }
|
||||
},
|
||||
-- possible eight variations of a single term
|
||||
["de"] = {
|
||||
{ file = "de", group_idx = 1 }
|
||||
|
|
Loading…
Reference in New Issue