Skip to content
This repository has been archived by the owner on Mar 25, 2020. It is now read-only.

Commit

Permalink
Update rplugin source
Browse files Browse the repository at this point in the history
  • Loading branch information
TJ DeVries committed Dec 21, 2016
1 parent 93c3bc6 commit 4b1f7ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rplugin/python3/deoplete/langserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def __init__(self, nvim):
super(Source, self).__init__(nvim)

self.nvim = nvim
self.name = langserver
self.name = 'langserver'
self.mark = '[LSP]'

def on_event(self, context, filename=''):
Expand All @@ -15,7 +15,7 @@ def on_event(self, context, filename=''):
def gather_candidates(self, context):
user_input = context['input']
filetype = context.get('filetype', '')
complete_str context['complete_str']
complete_str = context['complete_str']

return [
{
Expand Down

0 comments on commit 4b1f7ef

Please sign in to comment.