From a349fccefaef97a12927ebf8a85b28b304a17a91 Mon Sep 17 00:00:00 2001 From: Yu-Chiang Hsu Date: Sat, 7 Aug 2021 12:08:56 -0400 Subject: [PATCH] Vim-Table-Mode Tips --- Alignment-Example.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Alignment-Example.md diff --git a/Alignment-Example.md b/Alignment-Example.md new file mode 100644 index 0000000..dc5bac2 --- /dev/null +++ b/Alignment-Example.md @@ -0,0 +1,31 @@ +Had a challenging time toi figure out alignment for the great Vim-Table-Mode so here are a few example to help the next me :). + +The alignment depends on where you put the <:>. Here are 4 use cases. + + +No Alignment +| Test Alignment | +|----------------------| +| Hello test alignment | +| test 2 | + + +Left Alignment +| Test Alignment | +|:---------------------| +| Hello test alignment | +| test 2 | + + +Right Alignment +| Test Alignment | +|---------------------:| +| Hello test alignment | +| test 2 | + + +Center Alignment +| Test Alignment | +|:--------------------:| +| Hello test alignment | +| test 2 |