Powerlevel9k / powerlevel9k

Powerlevel9k was a tool for building a beautiful and highly functional CLI, customized for you. P9k had a substantial impact on CLI UX, and its legacy is now continued by P10k.
https://github.com/romkatv/powerlevel10k
MIT License
13.47k stars 947 forks source link

Fix background_jobs segment #1238

Closed dritter closed 5 years ago

dritter commented 5 years ago

This commit replaces the precmd hook with a call to jobs -l. It is not ideal, but gets the job done.

Performance: This is not nearly as fast as using %j, but that yields the total count of background jobs only. And this is probably slower than the former precmd solution.

So, this is a possible Plan B, if we don't find a better solution.

Fixes #1196

dritter commented 5 years ago

Closed in favor of #1254