1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-21 09:32:23 +00:00
starship/docs
Benjamin Fox 20d845f9b3
refactor(directory): Introduce logical-path argument which allows a shell to explicitly specify both a logical and physical filesystem path (#2104)
* refactor(directory): Introduce `logical-path` argument which allows a shell to explicitly specify both a logical and physical filesystem path

Fix `directory::module` to consume both path and logical-path (if provided).  The "logical" path is preferred when rendering the "display path", while the "physical" path is used to resolve the "read only" flag. Repo- and home-directory contraction behavior is maintained, based on the logical path if it is set, or the physical path if it is not.

The custom "get_current_dir" logic has been removed entirely, and the `directory` module now relies on `context.current_dir` / `context.logical_dir` entirely.

Changes have been made to `init/starship.ps1` to work with this new flag:
- Calculate and pass "physical" and "logical" paths explicitly (as other shells do not pass `--logical-path` that they fall back to rendering the physical path)
- Moved the "powershell provider prefix" cleanup code to the PowerShell script - this code _should_ now support any kind of powershell path prefix.

* fix(powershell): Fix an issue with trailing backslashes on file paths causing command line parsing issues.

This is a bit of a footgun!
The work-around chosen is to append a trailing space when a path string ends with a backslash, and then trim any extra whitespace away in the Context constructor.
Other alternatives considered and rejected:
1. Always trim trailing backslashes as the filesystem generally doesn't need them.
2. Escape trailing backslashes with another backslash. This proved complex as PS only quotes string args when the string includes some whitespace, and other backslashes within the string apparently don't need to be escaped.

* fix(powershell): Use Invoke-Native pattern for safely invoking native executables with strings which may contain characters which need to be escaped carefully.

* fix(context): Remove superfluous argument trims

These were in place to clean up extra whitespace sometimes injected by starship.ps1::prompt, and are no longer required with the new Invoke-Native helper in place.

* refactor(directory): Clean up the semantics of `logical_dir` defaulting it to `current_dir` but overridable by the `--logical-dir` flag.

- Restore `use_logical_path` config flag.
- Always attempt to contract repo paths from the `current_dir`.

* fix(directory) :Use logical_dir for contracting the home directory

This keeps the two calls to contract_path in sync.

* fix(directory): Remove test script

* refactor(directory): Convert current_dir to canonical filesystem path when use_logical_path = false

- This requires some clean-up to remove the extended-path prefix on Windows
- The configured logical_dir is ignored entirely in this mode - we calculate a new logical_dir by cleaning up the physical_dir path for display.
- Test coverage

* fix(directory): Use AsRef style for passing Path arguments

* fix(directory): Strip the windows extended-path prefix from the display string later in the render process

* fix(docs): Update docs/config/README.md for use_logical_path

* refactor(context): Populate `current_dir` from `--path` or `std::env::current_dir`, populate `logical_dir` from `--logical-path` or the `PWD` env var

- `current_dir` is always canonicalized
- On Windows, `current_dir` will have an extended-path prefix
- `logical_dir` is now always set
- `directory::module` now just selects between `current_dir` and `logical_dir` when picking which path to render
- Test coverage

* fix(directory): Fix path comparison operations in directory to ignore differences between path prefixes

- Added PathExt extension trait which adds `normalised_equals`, `normalised_starts_with` and `without_prefix`

* fix(path): Add test coverage for PathExt on *nix

* fix(directory): Test coverage for `contract_repo_path`, `contract_path` with variations of verbatim and non-verbatim paths

* fix(directory): Update path-slash to latest

This fixes the issue with the trailing character of some Windows paths being truncated, e.g. `\\server\share` and `C:`

* fix(powershell): Improve UTF8 output handling, argument encoding

- Use `ProcessStartInfo` to launch native executable, replacing manual UTF8 output encoding handling
- If we detect we're on PWSH6+ use the new `System.Diagnostics.ProcessStartInfo.ArgumentList` parameter, otherwise manually escape the argument string
- Move `Get-Cwd` and `Invoke-Native` into the prompt function scope so that they don't leak into the user's shell scope

* fix(path): Make PathExt methods no-ops on *nix

* fix(path): Cargo fmt

* fix(powershell): Remove typo ';'. Fix variable assignment lint.
2021-02-08 15:14:59 +01:00
..
.vuepress docs(i18n): add Vietnamese doc translations 2021-01-26 17:25:25 -05:00
advanced-config fix: bg:none overwrites foreground colour (#1903) 2020-12-02 00:40:15 -06:00
ar-SA docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
ckb-IR docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
config refactor(directory): Introduce logical-path argument which allows a shell to explicitly specify both a logical and physical filesystem path (#2104) 2021-02-08 15:14:59 +01:00
de-DE docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
es-ES docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
faq docs: add 'autocomplete' keyword to FAQ 2020-12-14 12:54:30 -05:00
fr-FR docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
guide docs: Add vuepress with initial docs (#99) 2019-07-19 16:18:52 -04:00
installing docs(installation): add advanced installation (#1643) 2021-01-05 17:05:03 -06:00
it-IT docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
ja-JP docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
ko-KR docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
migrating-to-0.45.0 docs: Update defaults in config docs (#1759) 2020-10-12 00:10:39 -04:00
nl-NL docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
pl-PL docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
presets feat(battery): make module behaviour more obvious (#1950) 2021-01-01 12:16:55 +01:00
pt-BR docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
pt-PT docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
ru-RU docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
tr-TR docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
vi-VN docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
zh-CN docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
zh-TW docs(i18n): New Crowdin updates (#2219) 2021-02-06 12:46:15 -05:00
package-lock.json build(deps-dev): bump @vuepress/plugin-google-analytics in /docs (#2120) 2021-01-11 20:06:40 -06:00
package.json build(deps-dev): bump @vuepress/plugin-google-analytics in /docs (#2120) 2021-01-11 20:06:40 -06:00
README.md feat: add support for elvish shell (#1725) 2021-02-02 12:59:55 +01:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg null The minimal, blazing-fast, and infinitely customizable prompt for any shell! Get Started → ./guide/
title details
Compatibility First Works on the most common shells on the most common operating systems. Use it everywhere!
title details
Rust-Powered Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.
title details
Customizable Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.
ISC Licensed | Copyright © 2019-present Starship Contributors Starship: Cross-Shell Prompt Starship is the minimal, blazing fast, and extremely customizable prompt for any shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, and PowerShell.

Quick Install

  1. Install the starship binary:

    Install Latest Version

    With Shell:

    curl -fsSL https://starship.rs/install.sh | bash
    

    Install via Package Manager

    With Homebrew:

    brew install starship
    

    With Scoop:

    scoop install starship
    
  2. Add the init script to your shell's config file:

    Bash

    Add the following to the end of ~/.bashrc:

    # ~/.bashrc
    
    eval "$(starship init bash)"
    

    Fish

    Add the following to the end of ~/.config/fish/config.fish:

    # ~/.config/fish/config.fish
    
    starship init fish | source
    

    Zsh

    Add the following to the end of ~/.zshrc:

    # ~/.zshrc
    
    eval "$(starship init zsh)"
    

    Powershell

    Add the following to the end of Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the $PROFILE variable in PowerShell. Typically the path is ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix.

    Invoke-Expression (&starship init powershell)
    

    Ion

    Add the following to the end of ~/.config/ion/initrc:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)
    

    Elvish

    ::: warning Only elvish v0.15 or higher is supported. :::

    Add the following to the end of ~/.elvish/rc.elv:

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)