Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Update. #37

Merged
merged 1 commit into from
Aug 28, 2023
Merged
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
2 changes: 2 additions & 0 deletions rplugin/python3/deoplete/sources/phantom.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ def get_complete_position(self, context):

def gather_candidates(self, context):
try:
# It doesn't support python4 yet.
py_major = sys.version_info[0]
py_minor = sys.version_info[1]

# 3.5 or higher python version is required.
if py_major == 3 and py_minor > 4:
# Settings, Config path is true/false change.
config_load: Optional[str] = '~/config/load.yml'
Expand Down