summaryrefslogtreecommitdiff
path: root/Shell
AgeCommit message (Expand)Author
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
2020-05-18LibLine: Handle unicode correctlyAnotherTest
2020-05-17Shell: Treat builtin names as programs and suggest themAnotherTest
2020-05-17Shell: Print the full name of missing interpretersAndreas Kling
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
2020-05-15Shell: Correct program stop behaviourAnotherTest
2020-05-15Shell: Print correct errno when execvp() failsSergey Bugaev
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-13Shell: Break out of continuation when ^C is pressedAnotherTest
2020-05-10Shell: Hyperlink output from "pwd" and "dirs" built-ins :^)Andreas Kling
2020-05-10Shell: Support basic syntax highlightingAnotherTest
2020-05-10Shell: Parse commentsAnotherTest
2020-05-10Shell: Include some metadata in parsed tokens and ask for continuationAnotherTest
2020-05-04Shell: Check for invalid #! in commandsAndrew Kaster
2020-04-30Shell: Provide the correct invariant length to the line editorAnotherTest
2020-04-30Shell+LibLine: Handle escaped characters correctlyAnotherTest
2020-04-30Shell: Correctly parse quoted filenames in redirectionAnotherTest
2020-04-27Shell: use access() syscall to check if files are executable by userStephan Unverwerth