Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

49 Zeilen
1.4 KiB

vor 13 Jahren
vor 13 Jahren
vor 13 Jahren
vor 13 Jahren
  1. zsh-syntax-highlighting
  2. =======================
  3. **[Fish shell][fish]-like like syntax highlighting for [Zsh][zsh].**
  4. *Requirements: zsh 4.3.17+.*
  5. [fish]: http://www.fishshell.com/
  6. [zsh]: http://www.zsh.org/
  7. This package provides syntax highlighing for the shell zsh. It enables
  8. highlighing of commands whilst they are typed at a zsh prompt into an
  9. interactive terminal. This helps in reviewing commands before running
  10. them, particularly in catching syntax errors.
  11. [![Screenshot](images/preview-smaller.png)](images/preview.png)
  12. How to install
  13. --------------
  14. See [INSTALL.md](INSTALL.md).
  15. FAQ
  16. ---
  17. ### Why must `zsh-syntax-highlighting.zsh` be sourced at the end of the `.zshrc` file?
  18. `zsh-syntax-highlighting.zsh` wraps ZLE widgets. It must be sourced after all
  19. custom widgets have been created (i.e., after all `zle -N` calls and after
  20. running `compinit`). Widgets created later will work, but will not update the
  21. syntax highlighting.
  22. ### How are new releases announced?
  23. There is currently no "push" announcements channel. However, the following
  24. alternatives exist:
  25. - GitHub's RSS feed of releases: https://github.com/zsh-users/zsh-syntax-highlighting/releases.atom
  26. - An anitya entry: https://release-monitoring.org/project/7552/
  27. How to tweak
  28. ------------
  29. Syntax highlighting is done by pluggable highlighter scripts. See the
  30. [documentation on highlighters](docs/highlighters.md) for details and
  31. configuration settings.