vkocubinsky / SublimeTableEditor

This package is no more supported. I moved to vim.
Other
494 stars 67 forks source link

Unexpected CSV to table conversion #66

Open Unknow0059 opened 5 years ago

Unknow0059 commented 5 years ago

Expected:

—Case 1 (without comma)
a b c d: "1" or "2" or E F G: H
                   ↓
|a b c d: "1" or "2" or E F G: H|

—Case 2 (with comma)
a b, c d: "1" or "2" or E F G: H
                  ↓
| a b | c d: "1" or "2" or E F G: H |

Actual output:

—Case 1 (without comma)
a b c d: "1" or "2" or E F G: H
                   ↓
| a | b | c | d: | 1 | or | 2 | or | E | F | G: | H |

—Case 2 (with comma)
a b, c d: "1" or "2" or E F G: H
                   ↓
| a | b, | c | d: | 1 | or | 2 | or | E | F | G: | H |