Project generator for VIM

This commit is contained in:
Ivan Kravets
2017-05-26 01:25:03 +03:00
parent 0a254c52c0
commit 5d87fc3461
5 changed files with 20 additions and 1 deletions

View File

@ -15,6 +15,7 @@ PlatformIO 3.0
- Compatibility with the popular IDEs: Eclipse, Atom, VSCode, Sublime Text, etc
- Windows, MacOS, Linux (+ARMv6-8)
* Project generator for `VIM <http://docs.platformio.org/page/ide/vim.html>`__
* Multi-line support for the different options in `Project Configuration File "platformio.ini" <http://docs.platformio.org/page/projectconf.html>`__,
such as: ``build_flags``, ``build_unflags``, etc.
(`issue #889 <https://github.com/platformio/platformio-core/issues/889>`_)

2
docs

Submodule docs updated: 80edf4a502...3282dffb6a

View File

@ -0,0 +1,6 @@
% for include in includes:
-I{{include}}
% end
% for define in defines:
-D{{!define}}
% end

View File

@ -0,0 +1,8 @@
{
"execPath": "{{ cxx_path.replace("\\", "/") }}",
"gccDefaultCFlags": "-fsyntax-only {{! cc_flags.replace(' -MMD ', ' ').replace('"', '\\"') }}",
"gccDefaultCppFlags": "-fsyntax-only {{! cxx_flags.replace(' -MMD ', ' ').replace('"', '\\"') }}",
"gccErrorLimit": 15,
"gccIncludePaths": "{{ ','.join(includes).replace("\\", "/") }}",
"gccSuppressWarnings": false
}

View File

@ -0,0 +1,4 @@
.pioenvs
.piolibdeps
.clang_complete
.gcc-flags.json