Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgrosser committed Jan 13, 2013
1 parent ac0f0a3 commit f57879d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/libclang.py
Expand Up @@ -38,11 +38,13 @@ def __init__(self, debug, file, line, column):
return

content = vim.eval("getline('.')");
params = getCompileParams(file)
print " "
print "libclang code completion"
print "========================"
print "Command: clang %s -fsyntax-only " % " ".join(getCompileArgs()),
print "Command: clang %s -fsyntax-only " % " ".join(params['args']),
print "-Xclang -code-completion-at=%s:%d:%d %s" % (file, line, column, file)
print "cwd: %s" % params['cwd']
print "File: %s" % file
print "Line: %d, Column: %d" % (line, column)
print " "
Expand Down

0 comments on commit f57879d

Please sign in to comment.