Skip to content

Latest commit

 

History

History
152 lines (87 loc) · 9.59 KB

CHANGELOG.md

File metadata and controls

152 lines (87 loc) · 9.59 KB

Changelog

1.9.0 (2024-02-24)

Features

  • Add support for clear_chat_on_new_prompt config option (7dc8771)

Bug Fixes

  • enable vim diagnostics after finish the conversation (a0a5a2a), closes #72

Reverts

1.8.0 (2024-02-23)

Features

  • New Command so that CopilotChat reads from current in-focus buffer when answering questions (#67) (57226f2)

1.7.1 (2024-02-20)

Bug Fixes

  • set default temperature and validate temperature value (8ff6db6)

1.7.0 (2024-02-20)

Features

Bug Fixes

  • add check for temperature if empty string (#60) (b38a4e9)

1.6.2 (2024-02-20)

Bug Fixes

  • set filetype to markdown for toggle vsplit buffer (1e250ff)

1.6.1 (2024-02-18)

Bug Fixes

  • code_actions: Add check for 'No diagnostics available' in diagnostic prompts (e46fa23)

1.6.0 (2024-02-18)

Features

  • add language settings for copilot answers (8e40e41)
  • add support for visual mode in show_prompt_actions function (13dfbba)
  • disable vim diagnostics on chat buffer for vsplit handler (fe1808e)

Bug Fixes

  • add validation before call FixDiagnostic command (81c5060)
  • reorder system prompt and language prompt (0d474a1)

1.5.0 (2024-02-17)

Features

  • add options to hide system prompts (98a6191)
  • add prompt actions support in Telescope integration (f124645)
  • integrate CopilotChat with telescope.nvim for code actions (0cabac6)

1.4.0 (2024-02-16)

Features

  • add diagnostic troubleshooting command (0e5eced)
  • add toggle command for vertical split in CopilotChat (48209d6)
  • integration: set filetype to 'copilot-chat' for support edgy.nvim (60718ed)

1.3.0 (2024-02-14)

Features

  • add reset buffer for CopilotChatReset command (bf6d29f)
  • CopilotChatReset command (528e6b4)

Bug Fixes

  • Include more info about refusal reason (46bdf01)

1.2.0 (2024-02-13)

Features

  • restructure for pynvim 0.4.3 backwards compatibility (#45) (52350c7)

1.1.0 (2024-02-10)

Features

  • chat_handler: show extra info only once (589a453)
  • Environment variables for proxy (HTTPS_PROXY and ALL_PROXY) (043e731)
  • Proxy support (19a8088)

Bug Fixes

  • Wacky indentation in readme (c5bf963)

1.0.1 (2024-02-08)

Bug Fixes

  • multi-byte languages by manually tracking last_line_col for buf_set_text (20a4234)

1.0.0 (2024-02-06)

⚠ BREAKING CHANGES

  • disable extra info as default
  • drop new buffer mode

Features

  • add a note for help user to continue the chat (8a80ee7)
  • add CCExplain command (640f361)
  • add CCTests command (b34a78f)
  • add configuration options for wrap and filetype (b4c6e76)
  • add CopilotChatDebugInfo command (#51) (89b6276)
  • add CopilotChatToggleLayout (07988b9)
  • add debug flag (d0dbd4c)
  • add health check (974f14f)
  • add new keymap to get previous user prompt (6e7e80f)
  • set filetype to markdown and text wrapping (9b19d51)
  • show chat in markdown format (9c14152)
  • show date time and additional information on end separator (#53) (b8d0a9d)

Bug Fixes

  • ci: generate doc (6287fd4)
  • ci: generate vimdoc on main branch (94fb10c)
  • ci: setup release action (2f1e046)
  • ci: skip git hook on vimdoc (94fb10c)
  • Close spinner if the buffer does not exist (#11) (0ea238d)
  • handle get remote plugin path on Windows (0b917f6)
  • remove LiteralString, use Any for fixing issue on Python 3.10 (b68c352), closes #45