Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -542,14 +542,30 @@ Also you can temporary switch this setting with command palette:
* Table Editor: Enable 'align_number_right' for current view
* Table Editor: Disable 'align_number_right' for current view

If `table_editor_align_number_right` true, auto alignment will be only if numbers in column:

| Sacred numbers | Birth |
|------------------|--------|
| 4 | 04 |
| 14 | 04 |
| 7 | 1990 |
|------------------|--------|

If in column not only numbers, `table_editor_align_number_right` will not be worked.

| Sacred numbers | Birth |
|-----------------|-------------|
| Sasha | 04 |
| 14 | Unusual |
| 7 | 1990 |
|-----------------|-------------|

### Detect header column to center

By default a header column aligns to center, if you do not like this you can disable it

```javascript
{

"table_editor_detect_header": false
}
```
Expand Down Expand Up @@ -627,7 +643,7 @@ and this result of Table Editor with

**ctrl+shift+a**

Re-align the table without change the current table field. Move cursor to begin of the current table field.
Re-align the table without change the current table field. Move cursor to end of the current table field.

**tab**

Expand Down