Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecated --variable_hover #77

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
- Added the capability for `fortls` to auto-update use `--disable_autoupdate` to disable
([#76](https://github.com/gnikit/fortls/issues/76))

## Deprecated

- Deprecated `--variable_hover` option and now is always enabled
([#46](https://github.com/gnikit/fortls/issues/46))

## 2.2.5

### Changed
Expand Down
7 changes: 2 additions & 5 deletions fortls/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,16 +176,13 @@ def commandline_args(name: str = "fortls") -> argparse.ArgumentParser:
"--variable_hover",
action="store_true",
help=(
"Show hover information for variables (default: subroutines/functions only)"
"DEPRECATED: This option is always on. Show hover information for variables"
),
)
group.add_argument(
"--hover_signature",
action="store_true",
help=(
"Show signature information in hover for arguments "
"(also enables '--variable_hover')"
),
help="Show signature information in hover for arguments ",
)
group.add_argument(
"--hover_language",
Expand Down
4 changes: 1 addition & 3 deletions fortls/langserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def __init__(self, conn, settings: dict):
setattr(self, k, v)

self.sync_type: int = 2 if self.incremental_sync else 1
self.variable_hover: bool = self.variable_hover or self.hover_signature
self.post_messages = []
self.FORTRAN_SRC_EXT_REGEX: Pattern[str] = src_file_exts()
# Intrinsic (re-loaded during initialize)
Expand Down Expand Up @@ -1049,7 +1048,7 @@ def create_signature_hover():
hover_str, highlight = member.get_hover(long=True)
if hover_str is not None:
hover_array.append(create_hover(hover_str, highlight))
elif self.variable_hover and (var_type == VAR_TYPE_ID):
elif var_type == VAR_TYPE_ID:
# Unless we have a Fortran literal include the desc in the hover msg
# See get_definition for an explanation about this default name
if not var_obj.desc.startswith(FORTRAN_LITERAL):
Expand Down Expand Up @@ -1516,7 +1515,6 @@ def _load_config_file_general(self, config_dict: dict) -> None:
)

# Hover options --------------------------------------------------------
self.variable_hover = config_dict.get("variable_hover", self.variable_hover)
self.hover_signature = config_dict.get("hover_signature", self.hover_signature)
self.hover_language = config_dict.get("hover_language", self.hover_language)

Expand Down
4 changes: 1 addition & 3 deletions test/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@ def test_command_line_autocomplete_options():

def test_command_line_hover_options():
args = parser.parse_args(
"--variable_hover --hover_signature --hover_language FortranFreeForm".split()
"--hover_signature --hover_language FortranFreeForm".split()
)
assert args.variable_hover
assert args.hover_signature
assert args.hover_language == "FortranFreeForm"

Expand Down Expand Up @@ -131,7 +130,6 @@ def test_config_file_autocomplete_options():
def test_config_file_hover_options():
server, root = unittest_server_init()
# Hover options
assert server.variable_hover
assert server.hover_signature
assert server.hover_language == "FortranFreeForm"

Expand Down
4 changes: 1 addition & 3 deletions test/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,9 +605,7 @@ def check_return(result_array, checks):
file_path = test_dir / "test_diagnostic_int.f90"
string += hover_req(file_path, 19, 14)

errcode, results = run_request(
string, fortls_args=["--variable_hover", "--sort_keywords"]
)
errcode, results = run_request(string, fortls_args=["--sort_keywords"])
assert errcode == 0
#
ref_results = (
Expand Down