starship/docs/es-ES/faq
Matan Kushner 02f7418820
docs(i18n): new Crowdin updates (#1719)
2020-10-13 15:09:01 -04:00
..
README.md docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00

README.md

Preguntas frecuentes (FAQ)

¿Cuál es la configuración usada en el GIF de demostración?

How do I get command completion as shown in the demo GIF?

Completion support is provided by your shell of choice. In the case of the demo, the demo was done with Fish Shell, which provides completions by default. If you use Z Shell (zsh), I'd suggest taking a look at zsh-autosuggestions.

Do top level format and <module>.disabled do the same thing?

Sí, se pueden usar ambos para desactivar los módulos en el símbolo del sistema. Si todo lo que planeas es desactivar módulos, <module>.disabled es el método preferido por las siguientes razones:

  • Disabling modules is more explicit than omitting them from the top level format
  • Los nuevos módulos se añadirán al símbolo del sistema en cuanto Starship se actualice

La documentación dice que Starship es compatible con cualquier intérprete de comandos pero no soporta X Shell. ¿Por qué?

Por la forma en que Starshp está construído, debería ser posible añadir soporte para prácticamente cualquier intérprete de comandos. El binario de Starship es sin estado y agnóstico, por lo que mientras que tu intérprete de comandos se pueda ampliar y soporte la personalización del símbolo del sistema, puede utilizar Starship.

Aquí tienes un pequeño ejemplo haciendo que Starship funcione con bash:

# Obtener el código de estado del último comando ejecutado
STATUS=$?

# Calcula el número de tareas ejecutándose.
NUM_JOBS=$(jobs -p | wc -l)

# Set the prompt to the output of `starship prompt`
PS1="$(starship prompt --status=$STATUS --jobs=$NUM_JOBS)"

La implementación de Bash en Starship es sensíblemente is ligeramente más compleja para permitir características avanzadas como el módulo de duración de comando y para asegurar que Starship es compatible con las configuraciones preinstaladas de Bash.

Para obtener una lista de todos los parámetros aceptados por el símbolo del sistema starship, usa el siguiente comando:

starship prompt --help

El símbolo de sistema usará tanto contexto como le proveas, pero no hay parámetros "obligatorios".

¿Cómo lanzo Starship en distribuciones Linux con versiones antiguas de glibc?

Si obtienes un error como "version 'GLIBC_2.18' not found (required by starship)" al usar el binario precompilado (por ejemplo, en CentOS 6 o 7), puedes usar el binario compilado con musl en vez de glibc:

curl -fsSL https://starship.rs/install.sh | bash -s -- --platform unknown-linux-musl

Why don't I see a glyph symbol in my prompt?

The most common cause of this is system misconfiguration. Some Linux distros in particular do not come with font support out-of-the-box. You need to ensure that:

  • Your locale is set to a UTF-8 value, like de_DE.UTF-8 or ja_JP.UTF-8. If LC_ALL is not a UTF-8 value, you will need to change it.
  • You have an emoji font installed. Most systems come with an emoji font by default, but some (notably Arch Linux) do not. You can usually install one through your system's package manager--noto emoji is a popular choice.
  • You are using a Nerd Font.

To test your system, run the following commands in a terminal:

echo -e "\xf0\x9f\x90\x8d"
echo -e "\xee\x82\xa0"

The first line should produce a snake emoji, while the second should produce a powerline branch symbol (e0a0).

If either symbol fails to display correctly, your system is still misconfigured. Unfortunately, getting font configuration correct is sometimes difficult. Users on the Discord may be able to help. If both symbols display correctly, but you still don't see them in starship, file a bug report!

How do I uninstall Starship?

Starship is just as easy to uninstall as it is to install in the first place.

  1. Remove any lines in your shell config (e.g. ~/.bashrc) used to initialize Starship.
  2. Delete the Starship binary.

If Starship was installed using a package manager, please refer to their docs for uninstallation instructions.

If Starship was installed using the curl | bash script, the following command will delete the binary:

# Locate and delete the starship binary
rm "$(which starship)"