Skip to content

Commit da0b530

Browse files
#28 docs update for new config files support
1 parent 73d3562 commit da0b530

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
# vscode-data-preview
2-
[VSCode](https://github.com/Microsoft/vscode) Data Preview 🈸 extension for viewing 🔎 slicing 🔪 dicing 🎲 &charting 📊 large `.json` array, `.arrow`, `.avro`, `.csv/.tsv` & `.xlsx/.xlsm` data files with [Perspective](https://perspective.finos.org/) - streaming data analytics WebAssembly library.
2+
[VSCode](https://github.com/Microsoft/vscode) Data Preview 🈸 extension for viewing 🔎 slicing 🔪 dicing 🎲 & charting 📊 large `.json` array/config, `.arrow`, `.avro`, `.csv/.tsv` & `.xlsx/.xlsm` data files with [Perspective](https://perspective.finos.org/) - streaming data analytics WebAssembly library.
33

44
![Data Preview](https://github.com/RandomFractals/vscode-data-preview/blob/master/images/vscode-data-preview.png?raw=true
55
"Data Preview")
66

77
# Data Preview 🈸 Features
88

9-
- Preview 🈸 `.json` array, `.arrow`, `.avro`, `.csv/.tsv` & `.xlsx/.xlsm` data files in a Data Grid with Sorting & Filtering
9+
- Preview 🈸 `.json`, `.arrow`, `.avro`, `.csv/.tsv` & `.xlsx/.xlsm` data files in a Data Grid with Sorting & Filtering
1010
- Grid Data Summary display with Aggregate Functions, Row & Column Pivots (a.k.a. `Group By` & `Split By`)
1111
- Basic Charts 📊 creation with Aggregate Functions, Row & Column Pivots
1212
- Pluggable Charting 📊 libraries for stock Charts: [highcharts](https://www.highcharts.com/demo) || [d3fc](https://d3fc.io/)
1313
- Persistent Data Preview Settings (View, Sort, Filter, Pivots, etc.) for restore of open panels on vscode Reload
1414
- Mulptiple Spreadsheets Data Preview for `Excel` data files
1515
- Arrow & Avro `.schema.json` generation & `Excel` data files `.json` data generation for Text Data Previews
16+
- Property Grid display for `.json`, `.env` & `.properties` configuration files
1617
- Filtered Data `.json` & `.csv` Save file options
1718
- Save & Load Data View `.config` options
1819
- Dark & Light Data Preview 🈸 Panel Themes
@@ -54,8 +55,8 @@ Data Preview 🈸 example using `.dark` theme with `d3fc` charts config, viewing
5455

5556
## Data Preview 🈸 Launch Tips
5657

57-
1. Run `View -> Command Palette...>Data: Preview Data 🈸` command || hit `Ctrl+Shift+D` in an open text `.csv/.tsv` || `.json` array data file document to launch Data Preview panel.
58-
2. Hit `Ctrl+S` || `File -> Save` your `.csv/.tsv` || `.json` array data file for updates in open Data Preview panel.
58+
1. Run `View -> Command Palette...>Data: Preview Data 🈸` command || hit `Ctrl+Shift+D` in an open text `.csv/.tsv` || `.json` data file document to launch Data Preview panel.
59+
2. Hit `Ctrl+S` || `File -> Save` your `.csv/.tsv` || `.json` data file for updates in open Data Preview panel.
5960
3. Right-click on a binary `.xlsx/.xlsm`, `.arrow` || `.avro` data file in vscode File Explorer to launch Data Preview panel.
6061
4. Use exposed `explorer/context`, `editor/title` || `editor/title/context` Preview Data 🈸 context menu options to preview your data files.
6162
5. Click on the Data Preview panel data filename in the toolbar to Load saved data view `.config`.
@@ -72,7 +73,7 @@ Data Preview 🈸 example using `.dark` theme with `d3fc` charts config, viewing
7273

7374
```js
7475
{
75-
"when": "resourceFilename =~ /.*\\.(json|arrow|arr|avro|csv|tsv|txt|tab|dif|ods|prn|slk|xls|xlsb|xlsx|xlsm|xml|html)/",
76+
"when": "resourceFilename =~ /.*\\.(json|arrow|arr|avro|env|config|properties|csv|tsv|txt|tab|dif|ods|prn|slk|xls|xlsb|xlsx|xlsm|xml|html)/",
7677
"command": "data.preview",
7778
"group": "navigation"
7879
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-data-preview",
33
"displayName": "Data Preview",
4-
"description": "Data Preview 🈸 extension for viewing 🔎 slicing 🔪 dicing 🎲 & charting 📊 large JSON array, Apache Arrow, Avro & Excel data files",
4+
"description": "Data Preview 🈸 extension for viewing 🔎 slicing 🔪 dicing 🎲 & charting 📊 large JSON array/config, Apache Arrow, Avro & Excel data files",
55
"version": "1.11.0",
66
"icon": "images/data-preview.png",
77
"publisher": "RandomFractalsInc",

0 commit comments

Comments
 (0)