Skip to content

Commit

Permalink
Fix: keyword argument should be document_changes, not documentChanges…
Browse files Browse the repository at this point in the history
… in rename.py
  • Loading branch information
rwols committed Dec 24, 2018
1 parent 5a472ba commit f9ebf9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/rename.py
Expand Up @@ -66,7 +66,7 @@ def handle_response(self, response: 'Optional[Dict]') -> None:
if response:
self.view.window().run_command('lsp_apply_workspace_edit',
{'changes': response.get('changes'),
'documentChanges': response.get('documentChanges')})
'document_changes': response.get('documentChanges')})
else:
self.view.window().status_message('No rename edits returned')

Expand Down

0 comments on commit f9ebf9a

Please sign in to comment.