Skip to content

Commit

Permalink
Do not sort header paths in Python layer
Browse files Browse the repository at this point in the history
Refactor filename completer tests.
  • Loading branch information
micbou committed Aug 29, 2017
1 parent de888d8 commit b0597df
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 112 deletions.
2 changes: 1 addition & 1 deletion ycmd/completers/general/filename_completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def GetPathsIncludeCase( self, path_dir, quoted_include, filepath,
paths.extend( os.path.join( include_path, path_dir, relative_path ) for
relative_path in relative_paths )

return sorted( set( paths ) )
return paths


def _GetAbsolutePathForCompletions( path_dir,
Expand Down
Loading

0 comments on commit b0597df

Please sign in to comment.