Skip to content

Commit

Permalink
Disable signature status line
Browse files Browse the repository at this point in the history
  • Loading branch information
cannorin committed Sep 2, 2022
1 parent 3092ca0 commit 2e385bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,15 @@ let g:fsharp#automatic_reload_workspace = 1 " 0 to disable.

##### Show type signature at cursor position

*Default:* enabled
*Default:* disabled

~~~.vim
let g:fsharp#show_signature_on_cursor_move = 1 " 0 to disable.
let g:fsharp#show_signature_on_cursor_move = 0 " 1 to disable.
~~~

> Note: this feature is known to be causing issues in some circumstances (#57, #58).
> So this feature is now disabled by default.
#### F# Interactive Settings

##### Change the F# Interactive command to be used within Ionide-vim
Expand Down
2 changes: 1 addition & 1 deletion autoload/fsharp.vim
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function! fsharp#loadConfig()
let g:fsharp#automatic_reload_workspace = 1
endif
if !exists('g:fsharp#show_signature_on_cursor_move')
let g:fsharp#show_signature_on_cursor_move = 1
let g:fsharp#show_signature_on_cursor_move = 0
endif
if !exists('g:fsharp#fsi_command')
let g:fsharp#fsi_command = "dotnet fsi"
Expand Down

0 comments on commit 2e385bd

Please sign in to comment.