Skip to content

Commit

Permalink
Fix bug with hover requests introduced in 5d759bb, fixes #159
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Apr 1, 2020
1 parent 6eb2de3 commit 6a36d62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fortls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,13 @@ def main():
"use_signature_help": args.use_signature_help,
"variable_hover": (args.variable_hover or args.hover_signature),
"hover_signature": args.hover_signature,
"hover_language": args.hover_language,
"sort_keywords": (not args.preserve_keyword_order),
"enable_code_actions": (args.enable_code_actions or args.debug_actions),
"max_line_length": args.max_line_length,
"max_comment_line_length": args.max_comment_line_length
}
if args.hover_language is not None:
settings["hover_language"] = args.hover_language
#
if args.debug_parser:
if args.debug_filepath is None:
Expand Down

0 comments on commit 6a36d62

Please sign in to comment.