How to disable automatic insertion of pairs #2383
Answered
by
the-mikedavis
BonfireAtNight
asked this question in
Q&A
-
|
I feel a bit embarrassed to ask this here, but I don't really understand how to disable the auto-pairing. I'm aware that there is a section on this in the Documentation, but I cannot quite figure out what it says exactly. I've tried things like Are |
Beta Was this translation helpful? Give feedback.
Answered by
the-mikedavis
May 3, 2022
Replies: 1 comment 1 reply
-
|
The docs are trying to say that you could configure: # ~/.config/helix/config.toml
[editor]
auto-pairs = false # completely disable auto-pairs
# or
auto-pairs = true # enable default auto-pairsor you can use a table to configure which pairs should close each other: [editor.auto-pairs]
"(" = ")" # use ) to close (
"[" = "]"
# other pairs here ... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BonfireAtNight
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The docs are trying to say that you could configure:
or you can use a table to configure which pairs should close each other: