Skip to content

Commit

Permalink
feat(nu): transient prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
JanDeDobbeleer committed Oct 18, 2023
1 parent dfef173 commit b007609
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 17 deletions.
33 changes: 19 additions & 14 deletions src/shell/scripts/omp.nu
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,36 @@ $env.PROMPT_INDICATOR = ""
$env.POSH_PID = (random uuid)
$env.POSH_SHELL_VERSION = (version | get version)

# PROMPTS
$env.PROMPT_MULTILINE_INDICATOR = (^::OMP:: print secondary $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)")

$env.PROMPT_COMMAND = { ||
def posh_cmd_duration [] {
# We have to do this because the initial value of `$env.CMD_DURATION_MS` is always `0823`,
# which is an official setting.
# See https://github.com/nushell/nushell/discussions/6402#discussioncomment-3466687.
let cmd_duration = if $env.CMD_DURATION_MS == "0823" { 0 } else { $env.CMD_DURATION_MS }
if $env.CMD_DURATION_MS == "0823" { 0 } else { $env.CMD_DURATION_MS }
}

def posh_width [] {
(term size).columns | into string
}

# PROMPTS
$env.PROMPT_MULTILINE_INDICATOR = (^::OMP:: print secondary $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)")

$env.PROMPT_COMMAND = { ||
# hack to set the cursor line to 1 when the user clears the screen
# this obviously isn't bulletproof, but it's a start
let clear = (history | last 1 | get 0.command) == "clear"

let width = ((term size).columns | into string)
^::OMP:: print primary $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)" $"--execution-time=($cmd_duration)" $"--status=($env.LAST_EXIT_CODE)" $"--terminal-width=($width)" $"--cleared=($clear)"
^::OMP:: print primary $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)" $"--execution-time=(posh_cmd_duration)" $"--status=($env.LAST_EXIT_CODE)" $"--terminal-width=(posh_width)" $"--cleared=($clear)"
}

$env.PROMPT_COMMAND_RIGHT = { ||
# We have to do this because the initial value of `$env.CMD_DURATION_MS` is always `0823`,
# which is an official setting.
# See https://github.com/nushell/nushell/discussions/6402#discussioncomment-3466687.
let cmd_duration = if $env.CMD_DURATION_MS == "0823" { 0 } else { $env.CMD_DURATION_MS }
$env.PROMPT_COMMAND_RIGHT = { ||
^::OMP:: print right $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)" $"--execution-time=(posh_cmd_duration)" $"--status=($env.LAST_EXIT_CODE)" $"--terminal-width=(posh_width)"
}

let width = ((term size).columns | into string)
^::OMP:: print right $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)" $"--execution-time=($cmd_duration)" $"--status=($env.LAST_EXIT_CODE)" $"--terminal-width=($width)"
if "::TRANSIENT::" == "true" {
$env.TRANSIENT_PROMPT_COMMAND = { ||
^::OMP:: print transient $"--config=($env.POSH_THEME)" --shell=nu $"--shell-version=($env.POSH_SHELL_VERSION)" $"--execution-time=(posh_cmd_duration)" $"--status=($env.LAST_EXIT_CODE)" $"--terminal-width=(posh_width)"
}
}

if "::UPGRADE::" == "true" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/configuration/transient.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";

:::info
This feature only works in `fish`, `zsh`, `powershell` (`ConstrainedLanguage` mode unsupported) and `cmd` for the time being.
This feature only works in `nu`, `fish`, `zsh`, `powershell` (`ConstrainedLanguage` mode unsupported) and `cmd` for the time being.
:::

Transient prompt, when enabled, replaces the prompt with a simpler one to allow more screen real estate.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/installation/customize.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Once altered, reload your config for the changes to take effect.
<TabItem value="nu">

:::caution
Oh My Posh requires Nushell v0.84.0 or higher.
Oh My Posh requires Nushell v0.86.0 or higher.
:::

Adjust the Oh My Posh init line in the Nushell env file (`$nu.env-path`) by adding the `--config` flag
Expand Down
2 changes: 1 addition & 1 deletion website/docs/installation/prompt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ exec fish
<TabItem value="nu">

:::caution
Oh My Posh requires Nushell v0.84.0 or higher.
Oh My Posh requires Nushell v0.86.0 or higher.
:::

Add the following line to the Nushell env file (`$nu.env-path`):
Expand Down

0 comments on commit b007609

Please sign in to comment.