I learned that using this:
let mapleader=','
if exists(":Tabularize")
nmap <Leader>a= :Tabularize /=<CR>
vmap <Leader>a= :Tabularize /=<CR>
endif
would give me a shortcut to tabularize with the '=' char. But I'd like to generalize it, so that I could use some shortcut like:
<Leader>a$
<Leader>a*
And it would read the '$' or '*' char and use it as the "char to tabularize". I.e., pass this char to the :Tabularize /CHAR function
Any ideas?