選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

135 行
2.1 KiB

  1. up to 98aee7f8b9a34c639352034087ac31193256b898
  2. # Changes in version 0.3.1
  3. ## Removed features:
  4. - Removed highlighting of approximate paths (`path_approx`).
  5. (#187, 98aee7f8b9a3)
  6. ## Other changes:
  7. - Fix initialization when sourcing `zsh-syntax-highlighting.zsh` via a symlink
  8. (083c47b00707)
  9. - docs: Add screenshot.
  10. (57624bb9f64b)
  11. ## Developer-visible changes:
  12. - Run each test in a separate subprocess, isolating them from each other
  13. (d99aa58aaaef, et seq)
  14. - Fix test failure with nonexisting $HOME
  15. (#216, b2ac98b98150)
  16. - Document `make install`
  17. (a18a7427fd2c)
  18. - tests: Allow specifying the zsh binary to use.
  19. (557bb7e0c6a0)
  20. # Changes in version 0.3.0
  21. ## Added highlighting of:
  22. - suffix aliases (requires zsh 5.1.1 or newer):
  23. alias -s png=display
  24. foo.png
  25. - prefix redirections:
  26. <foo.txt cat
  27. - redirection operators:
  28. echo > foo.txt
  29. - arithmetic evaluations:
  30. (( 42 ))
  31. - $'' strings, including \x/\octal/\u/\U escapes
  32. : $'foo\u0040bar'
  33. - multiline strings:
  34. % echo "line 1
  35. line 2"
  36. - string literals that haven't been finished:
  37. % echo "Hello, world
  38. - command words that involve tilde expansion:
  39. % ~/bin/foo
  40. ## Fixed highlighting of:
  41. - quoted command words:
  42. % \ls
  43. - backslash escapes in "" strings:
  44. % echo "\x41"
  45. - noglob after command separator:
  46. % :; noglob echo *
  47. - glob after command separator, when the first command starts with 'noglob':
  48. % noglob true; echo *
  49. - the region (vi visual mode / set-mark-command) (issue #165)
  50. - redirection and command separators that would be highlighted as `path_approx`
  51. % echo foo;‸
  52. % echo <
  53. (where `‸` represents the cursor location)
  54. - escaped globbing (outside quotes)
  55. % echo \*
  56. ## Other changes:
  57. - implemented compatibility with zsh's paste highlighting (issue #175)
  58. - `$?` propagated correctly to wrapped widgets
  59. - don't leak $REPLY into global scope
  60. ## Developer-visible changes:
  61. - added makefile with `install` and `test` targets
  62. - set `warn_create_global` internally
  63. - document release process
  64. # Version 0.2.1
  65. (Start of changelog.)