Skip to content

Commit d8cbe99

Browse files
committed
Fix an issue with a broken headers list when generating ".clang_complete" for Emacs // Resolve #1960
1 parent a690b8c commit d8cbe99

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

HISTORY.rst

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ PlatformIO 3.0
99

1010
* Ignore *.asm and *.ASM files when building Arduino-based library (compatibility with Arduino builder)
1111
* Fixed spurious project's "Problems" for `PlatformIO IDE for VSCode <http://docs.platformio.org/page/ide/vscode.html>`__ when ARM mbed framework is used
12+
* Fixed an issue with a broken headers list when generating ".clang_complete" for `Emacs <http://docs.platformio.org/page/ide/emacs.html>`__
13+
(`issue #1960 <https://github.com/platformio/platformio-core/issues/1960>`_)
1214
1315
3.6.2 (2018-11-29)
1416
~~~~~~~~~~~~~~~~~~

platformio/ide/tpls/emacs/.clang_complete.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
% for include in includes:
2-
-I"{{include}}"
2+
-I{{include}}
33
% end
44
% for define in defines:
55
-D{{!define}}

0 commit comments

Comments
 (0)