Skip to content

Releases: janisdd/vscode-edit-csv

0.11.9

02 Apr 17:32

Choose a tag to compare

  • merged pr #229 - Add 'Edit CSV' to editor tab context menu
    • this also fixes a small bug with the explorer/context where opening the table would fail

0.11.8

24 Nov 17:47

Choose a tag to compare

  • fixed issue #216 - cell with invalid urls (starts as a url but is actually invalid) render no content

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