Skip to content

Commit

Permalink
Add exclamation sign to word regex
Browse files Browse the repository at this point in the history
  • Loading branch information
avli committed Sep 21, 2016
1 parent ab1f197 commit 17f884d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "clojure",
"displayName": "Clojure",
"description": "Clojure nREPL support for Visual Studio Code",
"version": "0.4.0",
"version": "0.4.1",
"publisher": "avli",
"author": {
"name": "Andrey Lisin",
Expand Down
2 changes: 1 addition & 1 deletion src/clojureConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const keywords = [
]

export class ClojureLanguageConfiguration implements vscode.LanguageConfiguration {
wordPattern = /[\w\-\.:<>\*][\w\d\.\\/\-\?<>\*]+/;
wordPattern = /[\w\-\.:<>\*][\w\d\.\\/\-\?<>\*!]+/;
indentationRules = {
decreaseIndentPattern: undefined,
increaseIndentPattern: /^\s*\(.*[^)]\s*$/
Expand Down

0 comments on commit 17f884d

Please sign in to comment.