aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-04Scroll to active item when list is expandedAdrian Kummerlaender
List expansion only happens when a new item is added and as such the `onHeightChanged` signal allows for bringing the new item into view. This work around is necessary as all my attempts to scroll with the output by e.g. using the `onExecuted` signal of `TerminalItem` failed. Reasons for this include both the async nature of JavaScript which makes it inconvenient to enforce execution of a function at exactly the right time, as well as the height value of `terminalList` seemingly not being updated instantly.
2015-07-03Introduced last and first terminal selector actionsAdrian Kummerlaender
They are active in normal mode and move the focus to the last respectively first element of the list.
2015-07-01Enter insert mode when list end is hit repeatedlyAdrian Kummerlaender
2015-07-01Control UI mode by enabling and disabling actionsAdrian Kummerlaender
2015-06-29Added vim-like UI normal and insert modesAdrian Kummerlaender
Normal mode allows for selecting the a terminal or newline text input. Insert mode sets the keyboard focus to the currently selected item. This transforms _MetaTerm_ into a fully keyboard driven application.
2015-06-21Initial commit of _MetaTerm_ UI prototypeAdrian Kummerlaender
MetaTerm is a meta terminal in the sense that it allows launching multiple terminal shells and applications in a unified interface that is in itself reminiscent of a terminal shell.