Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 3.28 KB

File metadata and controls

69 lines (48 loc) · 3.28 KB

Changelog

All notable changes to this project will be documented in this file.

0.1.8 - 2026-02-21

  • Bump version to 0.1.8-dev by @gaborbernat in #22

  • 👷 ci(ui-test): fix IDE startup timeout in CI by @gaborbernat in #29

  • 🐛 fix(lexer): handle escaped backslashes in single-quoted strings by @gaborbernat in #36

  • @pre-commit-ci[bot] made their first contribution in #32

Full Changelog: https://github.com/tox-dev/jetbrains-fish/compare/v0.1.7...v0.1.8

0.1.7 - 2026-01-29

  • Bump version to 0.1.7-dev by @github-actions[bot] in #20
  • Use RELEASE_TOKEN for post-release PR to trigger workflows by @gaborbernat in #21

0.1.6 - 2026-01-29

  • Bump version to 0.1.6-dev by @github-actions[bot] in #18
  • Fix auto-merge workflow to use GITHUB_TOKEN by @gaborbernat in #19

0.1.5 - 2026-01-29

  • Bump version to 0.1.5-dev by @github-actions[bot] in #15
  • Fix internal API usage, improve UI tests, add auto-merge by @gaborbernat in #17

0.1.4 - 2026-01-29

  • Fix CI bugs, improve workflows, and fix flaky UI tests by @gaborbernat in #14

0.1.1 - 2026-01-29

Added

  • Initial Fish shell language support.
  • Syntax highlighting for Fish shell scripts.
  • File type detection for .fish extension.
  • Shebang detection (#!/usr/bin/env fish, #!/usr/bin/fish).
  • Comment and uncomment support via Ctrl+/ or Cmd+/.
  • Brace matching for parentheses, braces, and brackets.
  • Customizable color schemes via Settings > Editor > Color Scheme > Fish.
  • Support for Fish syntax elements including keywords (if, for, function, etc.), variables ($var, $var[index]), strings (single and double quoted with escape sequences), comments, operators (&&, ||, |, &), redirections (>, >>, <, 2>, &>), and command substitution with parentheses.
  • Code formatting via fish_indent when available on the system.
  • Inspections for deprecated syntax (deprecated functions like __fish_git_prompt, deprecated variables like $_, deprecated history flags like --search).
  • Inspections for unused local variables.
  • Run configurations to execute Fish scripts directly from the IDE.

0.1.0 - Initial Release

Added

  • Basic Fish shell language plugin structure.