Releases: niosus/EasyClangComplete
Releases · niosus/EasyClangComplete
Version 1.1.0
What's new:
- OSX now uses
libclangby default. You can use your default clang
installation or install llvm version from brew. - Fix for using
libclangwithclang-3.8on Linux. - Fix a bug where a file that has syntax C++ but was never saved before would
generate errors. - Add unit tests for completions using
libclangfor OSX and Linux.
Big thanks go to users:
- @Ventero for fixing
libclangsearch on OSX - @riazanovskiy for hints on
clang-3.8
Version 1.0.12
libclangwould not complete STL in standalone.hfiles because they would
be detected asCfiles instead ofC++. This is fixed now by using sublime
syntax definitions.- Generally use syntax provided by sublime instead of checking the file
extension. - Minor code refactorings.
Version 1.0.9
- fixed issue: #15
- now the default sublime autocomplete is not hidden by this plugin
- updated readme to be easier for beginners
Version 1.0.11
- minor changes to Readme.md to try to fix badges on Package Control website
Version 1.0.10
- fix a bug in handling includes from
.clang_completefile
Version 1.0.8
What's new:
- Now there is a new setting:
use_project_specific_settingsto set the clang flags for the current project from the*.sublime-projectfile. The flags have to be undersettings->clang_flagsin the correspondent json file. - Example project file looks like this:
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"clang_flags": ["-std=c++11", "-I/usr/include"]
}
}
- If the file that you are working on now does not belong to the project, or if the project has no
clang_flagskey undersettingsthen the plugin should fall back to classic execution. - By defult this new setting is
false.
Version 1.0.7
- updated readme to be more readable by enforcing 80 chars lines
- add install.md that will be shown upon installation instead of the readme
- remove redundand sublime project file
Version 1.0.6
- do not zip the package as it does not work like this (investigate it)
- update the readme
Version 1.0.5
- Code cleanups. No new functionality.
Version 1.0.4
What's new:
- remove
.no-sublime-packagefile as it seems tha package can be archived without loss to functionality