Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from afspeirs/bracket-improvement
Browse files Browse the repository at this point in the history
Added auto closing pairs and surrounding pairs
  • Loading branch information
stef-levesque authored Feb 12, 2017
2 parents 735f2b7 + feabe97 commit 75d5ed3
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions ahk.configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,27 @@
"blockComment": [ "/*", "*/" ]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["%", "%"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["%", "%"]
]
}

0 comments on commit 75d5ed3

Please sign in to comment.