If you are transforming a lot of JS object syntax into Clojure map syntax in vim, these three s
commands can help you:
s/,//g
s/'/"/g
s/\(\w*\):/:\1/g
The first one is simple, it removes all commas from the line
The second one is also simple, it swaps any single quotes for double quotes