Vonr / align.nvim

A minimal plugin for NeoVim for aligning lines
GNU General Public License v3.0
147 stars 4 forks source link

How to align all occurance of a character #16

Open RayZ0rr opened 10 months ago

RayZ0rr commented 10 months ago

For example in the snippet below:

map("n", "<S-Left>", "<C-w><S-h>", "Move window to the left")
map("n", "<S-Down>", "<C-w><S-j>", "Move window down")
map("n", "<S-Up>", "<C-w><S-k>", "Move window up")
map("n", "<S-Right>", "<C-w><S-l>", "Move window to the right")

How to align around all occurrence of ,(comma) ?

Xgames123 commented 6 months ago

I also have this problem when I want to align markdown tables it only aligns the first character