So far this is all I have in my .emacs:
(when
(load
(expand-file-name "~/.emacs.d/elpa/package.el"))
(package-initialize))
(require 'paredit)
(add-hook 'c++-mode-hook '(lambda () (paredit-mode 1)))
And so with paredit set up, I start typing some code in a new C++ file: (where the [] represents the cursor)
if (someFunc([)]))
Now instead of pressing the right arrow key or something similar, I usually enter in the right paren since it is located right next to the left paren and is a lot more convenient.
However, upon doing that, paredit makes a newline:
if (someFunc ()
[)]
How do I prevent paredit from doing this?