mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
parent
95055d3a38
commit
0d2602c900
Notes:
sideshowbarker
2024-07-18 19:11:21 +09:00
Author: https://github.com/alimpfard
Commit: 0d2602c900
Pull-request: https://github.com/SerenityOS/serenity/pull/6588
Issue: https://github.com/SerenityOS/serenity/issues/6578
Reviewed-by: https://github.com/linusg
3 changed files with 62 additions and 1 deletions
|
@ -46,7 +46,8 @@
|
|||
__ENUMERATE_SHELL_BUILTIN(fg) \
|
||||
__ENUMERATE_SHELL_BUILTIN(bg) \
|
||||
__ENUMERATE_SHELL_BUILTIN(wait) \
|
||||
__ENUMERATE_SHELL_BUILTIN(dump)
|
||||
__ENUMERATE_SHELL_BUILTIN(dump) \
|
||||
__ENUMERATE_SHELL_BUILTIN(kill)
|
||||
|
||||
#define ENUMERATE_SHELL_OPTIONS() \
|
||||
__ENUMERATE_SHELL_OPTION(inline_exec_keep_empty_segments, false, "Keep empty segments in inline execute $(...)") \
|
||||
|
@ -103,6 +104,8 @@ public:
|
|||
String resolve_path(String) const;
|
||||
String resolve_alias(const String&) const;
|
||||
|
||||
static String find_in_path(const StringView& program_name);
|
||||
|
||||
static bool has_history_event(StringView);
|
||||
|
||||
RefPtr<AST::Value> get_argument(size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue