Releases: Zeioth/compiler.nvim
Releases · Zeioth/compiler.nvim
v3.3.9
🐛fix(python
): They changed the package name so nuitka3
has been renamed to just nuitka
.
Special thanks to @Gaweringo from the discord channe for reporting it.
v3.3.8
New language added
- Support for the
gleam
programming language has been added.
Credits
Thanks to @Shad0wRim
v3.3.7
Minor fixes
- We now focus the last executed task. → closes #27
More info
- Starting
Compiler.nvim v3.3.7
, the minimum required overseer version is1.5.0
. - Tested with commit stevearc/overseer.nvim@29dd31d.
You can just copy paste the config from here.
Special thanks
@aaronmcadam for reporting the issue and @stevearc for fixing it.
v3.3.6
v3.3.5
New features
- Support for paths with spaces has been added.
Special thanks
To @Gaweringo for testing this feature.
v3.3.4
New language added
- Support for the
fortran
programming language has been added.
Credits
Thanks to @Shad0wRim
v3.3.3
v3.3.2
This version focuses on improving the features added in v3.3.0
.
New features
meson.build
parser now support multi line entries ofexecutable
andcustom_target
.CMakeLists.txt
parser now support multi line entries ofadd_executable
andadd_custom_target
.
Example
# We were already supporting this:
hello_world = executable('hello_world', 'main.cpp')
# Now we also support this:
hello_world = executable(
'hello_world', 'main.cpp'
)
And any other variation. The other build automation utilities already supported this, so no changes there.
v3.3.1
v3.3.0
New feature
Meson support
: When the filemeson.build
exist in the current working directory, Telescope will be populated with all itsexecutable
andcustom_target
entries.
More info
(optionally) You can define the next globals
global | defaut value |
---|---|
MESON_CLEAN_FIRST |
false |
MESON_BUILD_DIR |
./build |
MESON_BUILD_TYPE |
debug |
Example:
let g:MESON_BUILD_TYPE='release'
Globals persist between Neovim sessions.