When using paredit in programming modes such as C, typing ( will insert a space before the paren when I'm trying to call a function, leaving me with:

foo ()

Is there a way to disable the insertion of the space without changing paredit's source?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Well, the way paredit appears to work is that it checks the syntax tables to see if you're inserting a pair right after a word/symbol/etc., in which case it forces a space to be inserted. You need to override that functionality - which can be done a number of different ways: advice, redefine the function determining space, changing the syntax table, etc.

I'd try the straight forward:

(defun paredit-space-for-delimiter-p (endp delimiter)
  (and (not (if endp (eobp) (bobp)))
       (memq (char-syntax (if endp (char-after) (char-before)))
             (list ?\"  ;; REMOVED ?w ?_
                   (let ((matching (matching-paren delimiter)))
                     (and matching (char-syntax matching)))))))

This will obviously apply to all places where you use paredit. If you want something more mode specific, you can add some conditions to that and statement (e.g. (and ... (memq major-mode '(c-mode lisp-mode)))).

So... I guess I did change the "source", but you can do the same thing with a piece of defadvice ... it's all elisp, so the difference is minimal. There doesn't appear to be a setting to control this type of behavior.

link|improve this answer
1  
I've been wanting this for a long time, since I find autopair.el very slow. Paredit now works like a charm in c-mode. Thank you! :) – Vicky Chijwani Jan 31 at 13:31
feedback

Well, Paredit is ideal for editing languages built of S-expressions. If you just like how it automatically inserts the closing paren, use feature skeleton-pair.

(setq skeleton-pair t)
(global-set-key "(" 'skeleton-pair-insert-maybe)
link|improve this answer
Good point. I forgot about skeleton-pair. I'm so used to Paredit for mucking around with emacs lisp. I need to set that up for my non-lispy languages.. – Ton as in Anton May 29 '09 at 0:26
1  
Actually, paredit mode is extremely useful outside s-expression-based languages as well for enforcing validity of matched delimiters; it's not just about insertion. – technomancy Jun 26 '09 at 19:01
feedback

See paredit-space-for-delimiter-predicates

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.