Skip to content

Commit

Permalink
Fixing OmniCompleter to use 1-based start_column
Browse files Browse the repository at this point in the history
  • Loading branch information
Valloric committed May 12, 2014
1 parent d56ec1e commit 1ead914
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/ycm/completers/all/omni_completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ def OnFileReadyToParse( self, request_data ):


def _BuildRequestDataSubstitute():
data = BuildRequestData( include_buffer_data = False )
data[ 'start_column' ] = base.CompletionStartColumn()
return data
return BuildRequestData( start_column = base.CompletionStartColumn(),
include_buffer_data = False )


0 comments on commit 1ead914

Please sign in to comment.