Skip to content

Commit 5c61b83

Browse files
committed
Merge branch 'call-hierarchy-fix' of https://github.com/July541/haskell-language-server into call-hierarchy-fix
2 parents 2910a8b + aed3801 commit 5c61b83

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

plugins/hls-call-hierarchy-plugin/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ This plugin is useful when debugging and refactoring code because it allows you
1414
None. You can experience the whole feature without any setting.
1515

1616
## Configuration
17-
Enable default. You can disable it in the setting whenever you like.
17+
Enabled by default. You can disable it in your editor settings whenever you like.
18+
19+
```json
20+
{
21+
"haskell.plugin.callHierarchy.globalOn": true
22+
}
1823

1924
## Change log
2025
### 1.0.1.0

plugins/hls-call-hierarchy-plugin/test/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ prepareCallHierarchyTests =
164164
selRange = mkRange 1 13 1 14
165165
expected = mkCallHierarchyItemC "A" SkConstructor range selRange
166166
oneCaseWithCreate contents 1 13 expected
167-
, testGroup "type singature"
167+
, testGroup "type signature"
168168
[ testCase "next line" $ do
169169
let contents = T.unlines ["a::Int", "a=3"]
170170
range = mkRange 1 0 1 3

0 commit comments

Comments
 (0)