Skip to content

Releases: janisdd/vscode-edit-csv

0.11.7

13 Sep 17:32

Choose a tag to compare

  • fixed issue #208 - added option columnNamesStartIndexOffset to control which number the first column gets

0.11.6

31 Aug 12:01

Choose a tag to compare

  • fixed issue #202 - Ctrl+PgUp and Ctrl+PgDown are not forwarded to vs code (only handled by handsontable)
  • fixed issue #204 - help dialog link to keyboard shortcuts

0.11.5

05 Jul 12:58

Choose a tag to compare

0.11.5 Pre-release
Pre-release
  • fixed issue #197 - table resize now works better
  • fixed issue #198 - Fixed Columns turn white in high contrast theme

0.11.4

07 Jun 17:09

Choose a tag to compare

  • added feature #194 - Better unsaved changes indicator
  • added feature #193 - Copy column header to clipboard
  • updated has header ui tooltip

0.11.3

15 Mar 13:26
e3670f1

Choose a tag to compare

  • added feature #176 - add cursor to source file from table selection (via context menu)
    • disabled when certain actions are performed (see #176) but basicalyl all that change the shape of the table (e.g. add/remove rows/cols)
    • enabled again when applying changes or reloading/resetting data
  • fixed delayed readOption_hasHeader feature where the options is automatically enabled as soon as the table has more than 1 row
  • lowered the context menu sub items display delay from 300ms to 100ms
  • context menu sub menu indicator is now centered
  • side bar tooltips is not longer clipped
  • removed preview tag (user requested this)
  • removed some unused (not minified js) files from packages vsix

0.11.2

18 Jan 19:29

Choose a tag to compare

0.11.2

  • added feature #142 - added option tryToGuessHasHeader
    • tries to guess from the csv data if there is a header line or not

0.11.1

19 Dec 13:22

Choose a tag to compare

0.11.1

  • fixed issue #174 - added option overwriteExceptEmpty to the pasteBehavior setting
    • it only overwrites the cell content if the paste cell is not empty

0.11.0

  • added option forceQuoteLeadingWhitespace and forceQuoteTrailingWhitespace which will quote fields when they have leading or trailing whitespace
  • fixed issue #163 by changed option retainQuoteInformation from bool to string with the options
    • none (old false), determinedByColumns (old true) and full (new default)
    • full tracks the quote information for every cell individually (disabled until physical and visual indices are working)
  • fixed issue where hiding comment rows hides the wrong rows
    • happened when data was sorted and then rows were removed

0.10.0

09 Sep 10:47

Choose a tag to compare

  • added feature #161 - excelLike option to dragToAutoFill setting
    • this is now the default
  • added feature #155 - zoom the table content (only cells, not headers)
    • ui buttons are added or use mouse + ctrl (same as vs code font size feature)
  • added option pasteBehavior to determine where the old cells should be moved after a paste operation , see #156
  • added option pasteScrollBehavior to determine where to scroll after a paste operation, see #156

0.9.2

06 Jul 11:56

Choose a tag to compare

0.9.2

  • added feature #157 - hide columns initially, added options
    • initiallyHiddenColumnNumbers to hide columns based on its number
    • initiallyHiddenColumnNames to hide columns based on its name (first non-comment row)
  • fixed issue #147: add feature to automatically reload data if the source csv file changes
  • fixed issue #152: support drag and paste like excel
    • enabled dragToAutoFill (handsontable fillHandle) option
    • only supports copying same sequences 1,2,3 will copy 1,2,3 again not 4,5,6

0.9.1

07 Mar 15:12

Choose a tag to compare

  • fixed issue #146 - doubleClickRowHandleForcedHeight was a string (package config must be a number)
  • fixed issue #144 - tools menu item background was the same as foreground color