I like using paredit for my javascript. I know, it's weird, but its helpful to me. The one thing that really bugs me is when I type foo()
it automatically inserts a space to foo ()
.
Is there an option to disable this behavior?
I like using paredit for my javascript. I know, it's weird, but its helpful to me. The one thing that really bugs me is when I type foo()
it automatically inserts a space to foo ()
.
Is there an option to disable this behavior?
Copyright © 2021 Jogjafile Inc.
This seems done by function
paredit-insert-pair
. Commenting out the line in question as shown at last line below does it here. Writing an own customization in line above might correct value ofspacep
and keep the space for other modes.Also tweaking function
paredit-space-for-delimiter-p
is an option.