[clang-include-fixer] Added Emacs integration for clang-include-fixer.
Details
Diff Detail
Event Timeline
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
- Fixed typo
- Added documentation how to setup tools within emacs
- Removed unnecessary yes-no question
include-fixer/tool/clang-include-fixer.el | ||
---|---|---|
9 | clnag is another typo |
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
-Fixed documentation
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
- Fixed typo
include-fixer/tool/clang-include-fixer.el | ||
---|---|---|
126 | Looks like you are using an old-version of clang-include-fixer. It won't work with latest version. The latest clang-include-fixer changes this interfaces for supporting adding qualifiers for all instances of an unidentified symbol. So please update to use the latest version. You can refer to the change of "tool/clang-include-fixer.py" in https://reviews.llvm.org/D22567. PS. The "-output-header" option is changed from { "SymbolIdentifier": "foo", "Range": {"Offset":0, "Length": 3}, "HeaderInfos": [ {"Header": "\"foo_a.h\"", "QualifiedName": "a::foo"} ] } to { "QuerySymbolInfos": [ {"RawIdentifier": "foo", "Range": {"Offset": 0, "Length": 3}} ], "HeaderInfos": [ {"Header": "\"foo_a.h\"", "QualifiedName": "a::foo"} ] } |
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
Now working with the newest clang-include-fixer input/output format.
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
- fixed private path
- removed debug message
Thanks for the comments!
include-fixer/tool/clang-include-fixer.el | ||
---|---|---|
126 | You are right, removed. |
Updating D22805: [clang-include-fixer] Added Emacs integration for clang-include-fixer.
- Corrected typos and code indentation.
Thanks for the comments!
include-fixer/tool/clang-include-fixer.el | ||
---|---|---|
25 | The ending " is two lines below. |
s/diretory/directory