@@ -78,15 +78,15 @@ The plugin has two modes:
7878
7979- one that uses ` libclang ` with its python bindings. This is the better method
8080 as it fully utilizes saving compilation database which makes your completions
81- blazingly fast. Unfortunately it only works for Linux. Please help me to
82- bring it to other platforms if you know more about Windows or OSX than I do.
83- There is an issue for Windows opened
84- [ here ] ( https://github.com/niosus/EasyClangComplete/issues/4 ) .
81+ blazingly fast. It is a default method for Linux and OSX. It is also unit
82+ tested to complete STL functions on both platforms. Please help me to bring
83+ it to Windows. Check out this
84+ [ discussion ] ( https://github.com/niosus/EasyClangComplete/issues/4 ) .
8585- ` clang -Xclang -code-completion-at ` run from the command line. The plugin
8686 parses the output from a process that runs the above command. This is the
87- default method for Windows and OSX . Tested on all platforms (see
88- [ Testing ] ( #tests ) part). Slower than method with ` libclang ` . Will be
89- deprecated when we solve issue #4 .
87+ default method for Windows. Tested on all platforms (see [ Testing ] ( #tests )
88+ part). Slower than method with ` libclang ` . Will be deprecated when we solve
89+ issue #4 .
9090
9191This plugin is intended to be easy to use. It should autocomplete STL out of
9292the box and you should just add the folders your project uses to ` include_dirs `
@@ -164,6 +164,11 @@ If you are an experienced python developer and find that something in my code
164164sucks completely - **DO** tell me. Python is not my main language and I am
165165always willing to learn.
166166
167+ Some functionality is there only because of the help of the following users:
168+
169+ - @Ventero for fixing `libclang` search on OSX
170+ - @riazanovskiy for hints on `clang-3.8`
171+
167172## Tests ##
168173I have tried to cover most crucial functionality with unit tests using
169174[UnitTesting ](https://github.com/randy3k/UnitTesting) Sublime Text plugin.
0 commit comments