Closed
Description
Hi! I would like to be able to align the arguments of multiple similar function calls. Here's an example:
map('n', '<C-j>', quickfix_step('below'), { buffer = true })
map('n', '<C-k>', quickfix_step('above'), { buffer = true })
map('n', '<Space>', '<CR><C-w>p', { buffer = true })
map({'n', 'x'}, '<CR>', '<CR>', { buffer = true })
Currently when I run the formatting it is changed to this:
map('n', '<C-j>', quickfix_step('below'), { buffer = true })
map('n', '<C-k>', quickfix_step('above'), { buffer = true })
map('n', '<Space>', '<CR><C-w>p', { buffer = true })
map({'n', 'x'}, '<CR>', '<CR>', { buffer = true })
Is it possible to tell the formatter not to touch the spaces inside function calls?