mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
Shell: Add support for showing number of jobs in prompt with "\j"
This commit is contained in:
committed by
Ali Mohammad Pur
parent
f81bc8b045
commit
3d42e68265
@@ -129,6 +129,9 @@ DeprecatedString Shell::prompt() const
|
||||
} else if (lexer.consume_specific('p')) {
|
||||
builder.append(uid == 0 ? '#' : '$');
|
||||
|
||||
} else if (lexer.consume_specific('j')) {
|
||||
builder.appendff("{}", jobs.size());
|
||||
|
||||
} else if (lexer.consume_specific('!')) {
|
||||
if (m_editor)
|
||||
builder.appendff("{}", m_editor->history().size() + 1);
|
||||
|
||||
Reference in New Issue
Block a user