Age | Commit message (Expand) | Author |
2021-01-12 | Shell: Move to Userland/Shell/ | Andreas Kling |
2021-01-11 | LibLine: Handle history across multiple concurrent sessions better | AnotherTest |
2021-01-11 | Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf | Sahan Fernando |
2021-01-10 | LibLine: Implement support for C-V<key> | AnotherTest |
2021-01-10 | Shell: Fix completing barewords with escapes | AnotherTest |
2021-01-06 | Shell: Run function declarations in the current process | AnotherTest |
2021-01-04 | Shell: Remove debug log about child process going away | AnotherTest |
2021-01-03 | Shell: Implement a 'source' builtin | AnotherTest |
2021-01-03 | Shell: Show a snippet of what caused the error (if possible) | AnotherTest |
2021-01-03 | Shell: Give commands and globs a source position | AnotherTest |
2021-01-03 | Shell: Move AST::create() into the header and use it | AnotherTest |
2021-01-03 | TextEditor+Meta+Ports+Shell: Remove blank lines at the end of some files | Emanuele Torre |
2021-01-02 | Shell: Stop running the backgrounding test | AnotherTest |
2020-12-30 | AK+Format: Remove TypeErasedFormatParams& from format function. | asynts |
2020-12-30 | Shell: Implement a very basic exec builtin | William Marlow |
2020-12-30 | AK: Make binary_search signature more generic. | asynts |
2020-12-29 | Shell: Fix wrong step value for brace ranges | AnotherTest |
2020-12-29 | Shell: Add runtime errors and implement break/continue | AnotherTest |
2020-12-29 | Shell: Make for/match/functions put their variables only in the new scope | AnotherTest |
2020-12-29 | Shell: Add a 'glob' builtin | AnotherTest |
2020-12-16 | Shell: Don't run commands with failing redirections | Linus Groh |
2020-12-15 | Shell: Make Subshell actually create a subshell | AnotherTest |
2020-12-10 | Shell: Restore the terminal PGID before printing out job status on exit | AnotherTest |
2020-12-08 | Shell: Actually make shebangs work | AnotherTest |
2020-12-08 | Shell: Avoid recreating the event loop before exec() | AnotherTest |
2020-12-08 | Shell: Put background jobs into new process groups too | AnotherTest |
2020-12-08 | Shell: Show termination signal if job did not exit cleanly | AnotherTest |
2020-12-08 | Shell: Silence TCSETPGRP errors when not interactive | AnotherTest |
2020-12-08 | Shell: Replace all dbg()'s with dbgln() | AnotherTest |
2020-12-08 | Shell: Make <return> go to a new line when the command is incomplete | AnotherTest |
2020-12-03 | Shell: Replace one more user-controlled assert with a syntax error | AnotherTest |
2020-12-03 | Shell: Fix bad cast to BarewordLiteral | AnotherTest |
2020-11-30 | Shell: Error out when an expression is nested too deep | AnotherTest |
2020-11-29 | Shell: Fix some at_end() bugs and use syntax errors instead of asserting | AnotherTest |
2020-11-17 | Shell: Remove unused private member and includes | Lenny Maiorani |
2020-11-01 | Shell: Do not leak the value of ARGV in nested function calls | AnotherTest |
2020-11-01 | Shell: Search for variables in the last frame first | AnotherTest |
2020-11-01 | Shell: Store LocalFrames as NonnullOwnPtr<LocalFrame> instead | AnotherTest |
2020-10-29 | Shell: Allow parts of globs to be named in match expressions | AnotherTest |
2020-10-29 | Shell: Add some basic tests for backgrounding | AnotherTest |
2020-10-29 | Shell: Wait for the rest of the members of a pipeline when one exits | AnotherTest |
2020-10-29 | Shell: Use kill_job() to kill jobs | AnotherTest |
2020-10-29 | Shell: Add redirections to the formatted command string | AnotherTest |
2020-10-29 | Shell: Do not bail early when printing jobs if waitpid() fails | AnotherTest |
2020-10-29 | Shell: Rename {source,dest}_fd to {old,new}_fd | AnotherTest |
2020-10-29 | Shell: Run builtins that cannot be run in the main process in a new child | AnotherTest |
2020-10-29 | Shell: Drop all the jobs after killing them in stop_all_jobs() | AnotherTest |
2020-10-29 | Shell: Only prompt the user for a second 'exit' when in interactive mode | AnotherTest |
2020-10-29 | Shell: Add the `wait' builtin | AnotherTest |
2020-10-26 | Shell: Fix `cd' history (and `cdh') | AnotherTest |