summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
2020-07-09Shell: Pledge sigactionTom
2020-07-09Shell: Handle signals asynchronouslyTom
2020-07-07Shell: Suggest aliases when completing program names :^)AnotherTest
2020-07-07Shell: Skip creating a Join node when nothing was parsedAnotherTest
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 ending newline as part of a commentAnotherTest
2020-07-06Shell: Do not treat the absence of an init script as an errorAnotherTest
2020-07-05Shell: Do not remove more than 2 dashes from the option being completedAnotherTest
2020-07-05Shell: Add some testsAnotherTest
2020-07-05Shell: Initial support for 'option' completionsAnotherTest
2020-07-05Shell: Add a 'setopt' builtinAnotherTest
2020-07-05Shell: Show descriptions about syntax errorsAnotherTest
2020-07-05Shell: Allow a command sequence to be delimited by newlinesAnotherTest
2020-07-05Shell: Build as part of Lagom as wellAnotherTest
2020-07-05Shell: Mark And and Or nodes as execute nodesAnotherTest
2020-07-05Shell: Provide completions to Tilde and its Juxtaposition.AnotherTest
2020-07-05Shell: Allow commands in variables, and properly substitute them on useAnotherTest
2020-07-05Shell: Parse a pipe sequence inside $(...)AnotherTest
2020-07-05Shell: Expand Juxtaposition of lists to list productsAnotherTest
2020-07-05Shell: Do not try to recreate a command from a list of args in timeAnotherTest
2020-07-05Shell: Read and evaluate an init file on startAnotherTest
2020-07-05Shell: Use ArgsParser for argument parsingAnotherTest
2020-07-05Shell: Add the alias builtin and resolve aliasesAnotherTest
2020-07-05Shell: Switch to a new parser and ASTAnotherTest
2020-06-27LibLine: Support multiline editingAnotherTest
2020-06-17Meta: Scale back overly informal user-facing stringsAndreas Kling
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-08Shell: Highlight redirectionsAnotherTest
2020-06-01LibLine: Handle interrupts againAnotherTest
2020-05-30Shell: Treat ^D as builtin_exit when not in a continuationAnotherTest
2020-05-30Shell: Correctly complete paths in redirectionsAnotherTest
2020-05-27Shell: Save the history when quitting via the exit builtinAnotherTest
2020-05-27Shell: Never assign equal job ids to two different jobsAnotherTest
2020-05-27Shell: Provide some information to inspectorsAnotherTest
2020-05-27Shell: Avoid messing with sigaction while waiting for a childAnotherTest
2020-05-27LibLine: Use Core::EventLoop for outer read loopAnotherTest
2020-05-26AK: Rename FileSystemPath -> LexicalPathSergey Bugaev
2020-05-26Userland et al: Pledge sigaction when neededSergey Bugaev
2020-05-25Shell: Refuse to be suspended with ^ZAnotherTest
2020-05-25LibLine: Change get_line to return a Result<String, Error>AnotherTest
2020-05-25Shell: Warn the user about active jobs on exitAnotherTest
2020-05-25Shell: Parse and correctly evaluate 'command &' and 'command &&'AnotherTest
2020-05-25Shell: Kill existing jobs when exitingAnotherTest
2020-05-25Shell: Add the `disown' shell builtinAnotherTest
2020-05-23Shell: Take whitespace into account when suggesting tokensAnotherTest
2020-05-21LibLine: Correctly track the completion start and endAnotherTest
2020-05-21Shell: Attach links to completed pathsAnotherTest
2020-05-20LibLine: Unify completion hooks and adapt its usersAnotherTest