summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
AgeCommit message (Expand)Author
2020-12-08Shell: Replace all dbg()'s with dbgln()AnotherTest
2020-12-08Shell: Make <return> go to a new line when the command is incompleteAnotherTest
2020-10-26Shell+LibLine: Move Shell::{load,save}_history() to Line::EditorLinus Groh
2020-10-13Style: Remove uses of NULL, substituting nullptrMatthew L. Curry
2020-10-04Shell: Move everything to the Shell namespaceAnotherTest
2020-10-04AK: Don't add newline for outf/dbgf/warnf.asynts
2020-10-03Shell: Fix badly worded help string for '--format'AnotherTest
2020-10-01Shell: Wait for *any* child to change state when receiving a SIGCHLDAnotherTest
2020-10-01Shell: Sneak a way into being a session leaderAnotherTest
2020-09-30Shell: Make 'editor' a member of Shell, and provide a LibShellAnotherTest
2020-09-26Shell: Add live formatting and take an option to enable itAnotherTest
2020-09-26Shell: Add a (very basic) formatterAnotherTest
2020-09-19Shell: Make a new session at start if there's no active sessionAnotherTest
2020-09-14Shell: Add support for $0,$1,...AnotherTest
2020-09-09Shell: Fix event loop processing and backgrounding in subshellsAnotherTest
2020-08-21LibLine: Handle interrupts/window size changes internallyAnotherTest
2020-08-21LibLine: Handle Ctrl-C and Ctrl-D in a way similar to other line editorsAnotherTest
2020-08-18LibLine: Read configuration from a config fileAnotherTest
2020-08-15Shell: Allow redirections and pipes on builtinsAnotherTest
2020-08-09Shell: Stop a for loop upon receiving two consecutive interruptionsAnotherTest
2020-08-06LibLine+Shell: Remove unused split_mechanismNico Weber
2020-08-06Shell: Store jobs as NonnullRefPtr<Job>Andreas Kling
2020-08-06Shell: Mark suspended children as such when receiving a SIGCHLDAnotherTest
2020-08-04Shell: Give the TTY to the foreground processAnotherTest
2020-08-04Shell: Correct FdRedirection inheriting from two RefCounted basesAnotherTest
2020-08-04Shell: Add support for ARGV (and $*, $#)AnotherTest
2020-07-30Shell: Do not assume that wstatus is valid after wait() returns 0AnotherTest
2020-07-13Shell: Avoid waiting for jobs that were *just* unblockedAnotherTest
2020-07-13Shell: Put children in their own process groups and fix job controlAnotherTest
2020-07-09Shell: Pledge sigactionTom
2020-07-09Shell: Handle signals asynchronouslyTom
2020-07-07Shell: Run both /etc/shellrc and ~/.shellrc on startupAndreas Kling
2020-07-06Shell: Keep the TTY on the same pgroup to get tty signalsAnotherTest
2020-07-06Shell: Handle the case where the child we're waiting for doesn't existAnotherTest
2020-07-06Shell: Do not treat the absence of an init script as an errorAnotherTest
2020-07-05Shell: Build as part of Lagom as wellAnotherTest
2020-07-05Shell: Read and evaluate an init file on startAnotherTest
2020-07-05Shell: Use ArgsParser for argument parsingAnotherTest
2020-07-05Shell: Switch to a new parser and ASTAnotherTest
2020-06-01LibLine: Handle interrupts againAnotherTest
2020-05-27Shell: Avoid messing with sigaction while waiting for a childAnotherTest
2020-05-27LibLine: Use Core::EventLoop for outer read loopAnotherTest
2020-05-26Userland et al: Pledge sigaction when neededSergey Bugaev
2020-05-25Shell: Refuse to be suspended with ^ZAnotherTest
2020-05-20LibLine: Unify completion hooks and adapt its usersAnotherTest
2020-05-17Shell: Switch to using Core::EventLoopAnotherTest
2020-05-17Shell: Patch most of the builtins to use Core::ArgsParserAnotherTest
2020-05-17Shell: Add job control capabilitiesAnotherTest
2020-05-16Shell: Properly handle parser syntax errorsLinus Groh
2020-05-16Shell: Use DirIterator::SkipParentAndBaseDirShannon Booth