Questions tagged [parentheses]
The parentheses tag has no summary.
36 questions
0 votes
2 answers
67 views
Change child frame parameters when using paren show-paren-context-when-offscreen for parenthesis
I have this setup for showing a matching paren offscreen. I would like to customize some of the child frame parameters including background color, font color, etc. (require 'paren) (show-paren-mode 1) ...
0 votes
0 answers
54 views
why doesn't check-parens and elisp syntax highlighting understand single-quoted symbols in lisp-interaction mode?
In a lisp interaction buffer, I'm finding that check-parens and the syntax highlighting don't understand single-quoted symbols. For example: (secure-hash 'sha512 "not so random") The syntax ...
1 vote
1 answer
311 views
Automatically insert parenthesis around region without keybinding
Is there a way to automatically insert parenthesis (or other s-expressions) around a highlighted region by only typing (, {, ", etc.? I don't want to have to use a key bind (M-() for that. It's a ...
0 votes
1 answer
103 views
prevent emacs deleting ")"
I don't want to turn off entire smartparens or similar mode ((([cursor])) When I type ) at cursor location I expect it to be ((())) but it becomes ((()) How to find out which mode is causing it?
2 votes
2 answers
808 views
How to set parentheses matching colors
When using parentheses matching, how can I set the color of the parenthesis my cursor is actually on? I found I can use the below set-face-attribute to control the color of the other parenthesis, but ...
1 vote
1 answer
81 views
Completion to set style
I have the following function, where I would like to use completion to set the style. But the way I have done does not reset the style using M-x rk-bracemk-companion. (defcustom rk-bracemk-...
0 votes
1 answer
118 views
Indicating parentheses
I have this piece that indicates an opening parenthesis by blinking it. Currently, if I want to mark an opening parenthesis, I have to do call M-x rk-blink-matching-open each time. I would like the ...
0 votes
2 answers
149 views
Lispy and Racket
I'm using lispy with Racket and having a tough time with some forms. Namely, if I with to a let or keyword argument I can't seem to type the inner [ character. For example, I want to define a ...