This extensions allows you to edit csv files with an excel like table ui
If you don't have vs code to hand, you can use the online version at https://edit-csv.net
Execute the command edit as csv
to open an editor for the current file.
Execute the command again to switch back to the source file or to switch back to the editor
Note that the data flow is one way (editor to source file). If you make changes to the source file (.csv) while the editor is open, the editor will not be updated!
-
On initial load all rows are expanded so that all rows have equal length (number of cells (if necessary))
- if that happens you will see the
unsaved changes
indicator right from the start
- if that happens you will see the
-
enabling/disabling the
has header
read option will clear the undo/redo stack! -
empty lines are skipped!
- this will not trigger the
unsaved changes
indicator - (during parsing) a row is also empty when it only contains
""
- this can be problematic if you have only 1 column...
- this will not trigger the
-
We try to retain quote information (default) but in some cases fields could get unquoted on save (see Retain Quote Information Rules)
-
Comment row (rows starting with a comment) will only export the first cell
- if you accidentally added comment text to a cell other than the first cell you will notice it (color)
-
Adding new lines to comments rows (via alt + enter) will have no effect when exporting (lines breaks are removed in comments!)
- leading spaces will be removed in comment rows!
-
Starting with Version 0.1.0 the table has a context menu (right-click the table)
- (just mentioning it because it is not obvious via the ui)
-
Plugin Version 0.0.11 had an issue with loading and saving files with more than ~1 MB
- saved files were corrupted (content of the first ~1MB was repeated after the first ~1MB until the file size was reached)
during parsing information about the quotes are stored
- quote information is only stored for columns
- only the first non-comment, not empty row (no fields) is used to gather quote information
- if the first row has less cells than other rows
- then missing entries are filled with
csv-edit.newColumnQuoteInformationIsQuoted
(default is not quoted)
- then missing entries are filled with
- manually added columns will get
csv-edit.newColumnQuoteInformationIsQuoted
quote information - moving columns will also "move" the quote information
- e.g. column 3 was quoted and is now column 1 then column 1 is quoted after moving
Implications of this
- columns with mixed cells (quoted and not quoted fields) will get homogeneously quoted
This can be turned off by setting csv-edit.retainQuoteInformation
to false
In this case all unnecessary quotes are removed
essentially it's just import csv and export csv
When you click on Edit CSV file
-
the file content is cut into pieced and transferred via
[webview].postMessage
-
the current config is stringified and injected into the editor (webview) html
-
a manager stores a reference to the webview, source file uri, editor uri
-
in the webview the pieces are put together and the text is parsed as csv and displayed in the (handsontable) table element
When you click on apply
-
the current table is transformed into csv, transferred via
vscode.postMessage
to the extension and written to the source file- if you clicked on
apply
by accident, you can undo the changes in the table element (with the usual shortcuts) and apply again or open the source file and just do an undo (with the usual shortcuts)
- if you clicked on
-
When you click on
apply and save
- the first step is equal to
apply
- then the source file is saved
- the first step is equal to
-
When you click in
Read again
- the injected content is used (when the editor was opened), this does not read the source file again
As you can see this does not scale very well with large csv files (needs to be stringified and stored the whole time)
There are some settings for this plugin. Open the VS Code Settings and search for csv-edit
Files with the extension .csv
, .tsv
should work out of the box.
You can change the file type in the bottom right corner of the editor (select language mode). This is required for unnamed/new files.
For tsv
, make sure the indention is set to tabs
.
See https://code.visualstudio.com/docs/languages/overview#_adding-a-file-extension-to-a-language
If the link is down: Search for files.associations
in the vs code settings. Then add an entry for *.xyz
to csv
.
Now the file is treated as a csv file and is recognized by the extension
Starting from version 0.10.0
the setting dragToAutoFill
defaults to excelLike
.
The other values are none
and copyOnly
.
none
is used to disable auto fill.
Setting dragToAutoFill
to copyOnly
will copy the selected cell values over and over again.
Example: 1,b,3
and you drag the handle 6 cells further will give 1,b,3,1,b,3
as auto fill values.
As you can see, there is no interpolation, the selected sequence is copied again and again.
The default setting excelLike
imitates the Excel behaviour for automatic fill values.
In most cases it will work just fine, but there may be some special cases.
In general, the following values can be filled in automatically: Numbers, month names and dates.
Similar to Excel, you can hold down the alt
key before releasing the mouse button to copy the cell values. No interpolation is carried out.
You can find a complete explanation of how automatic filling works in docs/autoFillBehavior.md
.
-
apply and save
an unnamed file will close the editor- this is because the new uri for the new file is not known and for some reason if an extension saves an unnamed file the new file is not displayed automatically
- maybe this can be resolved when microsoft/vscode#43768 is closed
- this is because the new uri for the new file is not known and for some reason if an extension saves an unnamed file the new file is not displayed automatically
-
renaming a file while an editor is open for that file will break the reference the the source file
- thus changes can no longer be saved/applied
- maybe this can be resolved when microsoft/vscode#43768 is closed
-
if the source file content changes and the file is not in the current workspace (open folder) auto file content reload is not working
- however, you are notified if the file content changes (e.g. outside of vs code)
I recommend installing the Rainbow CSV
extension, the extensions play well together!
If you want to only view csv files you can go for the extension Excel Viewer. It has some more advanced sorting and filtering features.
There is one things missing...
- tests
- especially for interaction between vs code and the webview
- I added some listeners to handsontable hooks which manipulate rendering, selection...
- use merged cells for comments (rows)
- there are some problems with adding/removing rows in connection with undo & redo, sorting...
- update handsontable to 7.x.x
- with version 7 handsontable is only free for non-commercial use
- for csv parsing/writing: papaparse
- with small custom modifications to handle comments specially
- for grid/table element: handsontable
- for ui: vs code webview-ui-toolkit, fontawesome
- for shortcuts: mousetrap
- for big numbers: big.js
- for auto fill
- regression-js
- day.js for date handling
- (big.js for numbers)
see thirdParty
folders
There are some more in package.json
. Even if they are not referenced directly, they are used e.g. for the browser build. We copy them from node_modules
into the thirdParty
folders.
There is a command edit-csv.editWithConfig
. It can be used to open the editor with settings specified by you.
All possible settings can be found in [project root]/csvEditorHtml/types.d.ts > EditCsvConfig
. The easiest way is to copy both types EditCsvConfig
and EditCsvConfigOverwrite
and then call the extenion command like this:
vscode.commands.registerCommand('yourExtension.yourCommand', () => {
let overwriteSettings: EditCsvConfigOverwrite = {
readOption_hasHeader: "true",
//other options, auto completion enabled
}
vscode.commands.executeCommand(`edit-csv.editWithConfig`, overwriteSettings)
})
There is one problem left: the Edit CSV
button in the title bar (and the file right click menu action) will still use the settings set by the user...
For this there is the option csv-edit.hideOpenCsvEditorUiActions
. If set to true it will hide the two ui actions. This way you can create a buttom from your extension and open the editor and force your settings.
Make sure to keep the type EditCsvConfig up-to-date (in case any types change)
The extension will warn you about any unknown settings supplied but will not check the actual property values!
It will overwrite the settings configured by the user and call the same method as edit-csv.edit
(the default when the editor is opened via the Edit CSV
button).
To compile (and watch) the files in csvEditorHtml
run
tsc -w #or just tsc to transpile only once
# new terminal
cd csvEditorHtml
tsc -w #or just tsc to transpile only once
then press F5
to run the extension
When you edit csvEditorHtml/index.html
you need to manually copy the changes (everything in the body but without the scripts) into src/getHtml.ts
(past into body)
You can also open csvEditorHtml/index.html
in your favorite browser and play around (the vs code settings are not applied in the browser)
Code: MIT