Age | Commit message (Expand) | Author |
2020-07-12 | Shell: Recursively resolve aliases | AnotherTest |
2020-07-09 | Shell: Pledge sigaction | Tom |
2020-07-09 | Shell: Handle signals asynchronously | Tom |
2020-07-07 | Shell: Suggest aliases when completing program names :^) | AnotherTest |
2020-07-07 | Shell: Skip creating a Join node when nothing was parsed | AnotherTest |
2020-07-07 | Shell: Run both /etc/shellrc and ~/.shellrc on startup | Andreas Kling |
2020-07-06 | Shell: Keep the TTY on the same pgroup to get tty signals | AnotherTest |
2020-07-06 | Shell: Handle the case where the child we're waiting for doesn't exist | AnotherTest |
2020-07-06 | Shell: Do not treat the ending newline as part of a comment | AnotherTest |
2020-07-06 | Shell: Do not treat the absence of an init script as an error | AnotherTest |
2020-07-05 | Shell: Do not remove more than 2 dashes from the option being completed | AnotherTest |
2020-07-05 | Shell: Add some tests | AnotherTest |
2020-07-05 | Shell: Initial support for 'option' completions | AnotherTest |
2020-07-05 | Shell: Add a 'setopt' builtin | AnotherTest |
2020-07-05 | Shell: Show descriptions about syntax errors | AnotherTest |
2020-07-05 | Shell: Allow a command sequence to be delimited by newlines | AnotherTest |
2020-07-05 | Shell: Build as part of Lagom as well | AnotherTest |
2020-07-05 | Shell: Mark And and Or nodes as execute nodes | AnotherTest |
2020-07-05 | Shell: Provide completions to Tilde and its Juxtaposition. | AnotherTest |
2020-07-05 | Shell: Allow commands in variables, and properly substitute them on use | AnotherTest |
2020-07-05 | Shell: Parse a pipe sequence inside $(...) | AnotherTest |
2020-07-05 | Shell: Expand Juxtaposition of lists to list products | AnotherTest |
2020-07-05 | Shell: Do not try to recreate a command from a list of args in time | AnotherTest |
2020-07-05 | Shell: Read and evaluate an init file on start | AnotherTest |
2020-07-05 | Shell: Use ArgsParser for argument parsing | AnotherTest |
2020-07-05 | Shell: Add the alias builtin and resolve aliases | AnotherTest |
2020-07-05 | Shell: Switch to a new parser and AST | AnotherTest |
2020-06-27 | LibLine: Support multiline editing | AnotherTest |
2020-06-17 | Meta: Scale back overly informal user-facing strings | Andreas Kling |
2020-06-12 | AK: Make string-to-number conversion helpers return Optional | Andreas Kling |
2020-06-08 | Shell: Highlight redirections | AnotherTest |
2020-06-01 | LibLine: Handle interrupts again | AnotherTest |
2020-05-30 | Shell: Treat ^D as builtin_exit when not in a continuation | AnotherTest |
2020-05-30 | Shell: Correctly complete paths in redirections | AnotherTest |
2020-05-27 | Shell: Save the history when quitting via the exit builtin | AnotherTest |
2020-05-27 | Shell: Never assign equal job ids to two different jobs | AnotherTest |
2020-05-27 | Shell: Provide some information to inspectors | AnotherTest |
2020-05-27 | Shell: Avoid messing with sigaction while waiting for a child | AnotherTest |
2020-05-27 | LibLine: Use Core::EventLoop for outer read loop | AnotherTest |
2020-05-26 | AK: Rename FileSystemPath -> LexicalPath | Sergey Bugaev |
2020-05-26 | Userland et al: Pledge sigaction when needed | Sergey Bugaev |
2020-05-25 | Shell: Refuse to be suspended with ^Z | AnotherTest |
2020-05-25 | LibLine: Change get_line to return a Result<String, Error> | AnotherTest |
2020-05-25 | Shell: Warn the user about active jobs on exit | AnotherTest |
2020-05-25 | Shell: Parse and correctly evaluate 'command &' and 'command &&' | AnotherTest |
2020-05-25 | Shell: Kill existing jobs when exiting | AnotherTest |
2020-05-25 | Shell: Add the `disown' shell builtin | AnotherTest |
2020-05-23 | Shell: Take whitespace into account when suggesting tokens | AnotherTest |
2020-05-21 | LibLine: Correctly track the completion start and end | AnotherTest |
2020-05-21 | Shell: Attach links to completed paths | AnotherTest |