alternate support

This commit was merged in pull request #20.
This commit is contained in:
kepler155c@gmail.com
2019-11-10 15:58:36 -07:00
parent c9fd7efc26
commit 674c6af509
6 changed files with 106 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ keyboard.addHotkey('control-tab', function()
return a.uid < b.uid
end
for _,tab in Util.spairs(tabs, compareTab) do
if not tab.hidden then
if not tab.hidden and not tab.noFocus then
table.insert(visibleTabs, tab)
end
end

View File

@@ -54,6 +54,7 @@ if multishell and multishell.openTab then
multishell.openTab({
title = 'System Log',
fn = systemLog,
noTerminate = true,
hidden = true,
})
else