Open Issues Need Help
View All on GitHubAI Summary: The default emulator theme is currently unusable in light-themed terminals because it uses a 'white' color that becomes invisible on light backgrounds. The proposed solution is to modify the default theme by changing instances of 'white' to 'default' (the terminal's default foreground color), making it theme-agnostic and functional in both light and dark modes. This is considered a simpler alternative to implementing full theme detection.
AI Summary: The user requests an enhancement to shell autocomplete for `cd ..`. Currently, navigating up many levels requires manually counting `../` steps. The proposed solution is for `cd ..` followed by Tab to display a list of parent directories for selection, and similarly for `ls ..<partial_name>` to filter these directories, taking into account case sensitivity.
AI Summary: The task is to modify the `watch` command in the Nushell shell to accept a duration value (e.g., `5min`) for its debounce time, instead of only milliseconds. This involves updating the command's argument parsing, potentially adding a new flag while maintaining backward compatibility with the existing millisecond-based flag, and updating the documentation to reflect the change.
AI Summary: The task is to fix a panic in the `random dice` command of the Nushell shell when the `--sides` option is set to 0. The current behavior is to panic; the desired behavior is to return a user-friendly error message indicating that a non-zero value is required for the number of sides.