Skip to content

Commit

Permalink
Fix input_pattern
Browse files Browse the repository at this point in the history
Accidentally match blank lines
  • Loading branch information
beeender committed Mar 28, 2019
1 parent 33c0d2f commit f1ec541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rplugin/python3/deoplete/sources/comrade_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, vim):
self.input_pattern = (r'(\.)\w*|'
r'(:)\w*|'
r'(::)\w*|'
r'(->)\w*|')
r'(->)\w*')
self.is_debug_enabled = True

def gather_candidates(self, context):
Expand Down

0 comments on commit f1ec541

Please sign in to comment.