Skip to content

Releases: heckmon/code_forge

code_forge v9.9.0

12 Apr 19:13

Choose a tag to compare

  • FIX: Cursor jump on typing.
  • FIX: Frozen horizontal scroll on dynamic font size.

code_forge v9.8.0

10 Apr 09:58

Choose a tag to compare

  • FIX: LSP Initialization bug.

code_forge v9.7.0

31 Mar 11:49

Choose a tag to compare

  • Enhanced large text handling

code_forge v9.6.0

29 Mar 08:05

Choose a tag to compare

  • FIX: #60
  • FEATURE: Empty Mode as default highlight grammar instead of dart grammar as requested in #59

code_forge v9.5.0

27 Mar 14:07

Choose a tag to compare

code_forge v9.4.0

24 Mar 07:35

Choose a tag to compare

  • FIX: #57
  • FIX: #58
  • FIX: Anchored gutter for controller.setGitDiffDecorations

code_forge v9.3.0

21 Mar 07:52

Choose a tag to compare

  • FIX: #54
  • FEATURE: Multiple highlight grammars for a single editor instance.

code_forge v9.2.0

12 Mar 09:17

Choose a tag to compare

code_forge v9.1.0

04 Mar 16:46

Choose a tag to compare

code_forge v9.0.0

02 Mar 16:20

Choose a tag to compare

  • FEATURE: Multi-cursor

    • Alt + Click to add multiple cursors in the editor.
    • APIs:
    // Multi-cursor operations
    controller.addMultiCursor(int line, int character);
    controller.clearMultiCursor();
    controller.backspaceAtAllCursors();
    controller.insertAtAllCursors(String textToInsert);
    
  • FIX: #43

  • ENHANCEMENT: Virtual lines for git diff removed ranges.

  • Added customCodeSnippets parameter on the editor to add external code snippets on the suggestions as requested in #46