Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/escape-hover-text
Browse files Browse the repository at this point in the history
  • Loading branch information
rwols committed Jul 20, 2019
2 parents ef2685d + 1e09409 commit 5acab78
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions plugin/core/sessions.py
Expand Up @@ -68,9 +68,7 @@ def get_initialize_params(project_path: str, config: ClientConfig):
"snippetSupport": True
},
"completionItemKind": {
"valueSet": [
completion_item_kinds
]
"valueSet": completion_item_kinds
}
},
"signatureHelp": {
Expand All @@ -85,9 +83,7 @@ def get_initialize_params(project_path: str, config: ClientConfig):
"documentHighlight": {},
"documentSymbol": {
"symbolKind": {
"valueSet": [
symbol_kinds
]
"valueSet": symbol_kinds
}
},
"formatting": {},
Expand All @@ -108,9 +104,7 @@ def get_initialize_params(project_path: str, config: ClientConfig):
"executeCommand": {},
"symbol": {
"symbolKind": {
"valueSet": [
symbol_kinds
]
"valueSet": symbol_kinds
}
}
}
Expand Down

0 comments on commit 5acab78

Please sign in to comment.