Skip to content

Releases: Zeioth/compiler.nvim

v3.3.7

09 Jun 18:21
Compare
Choose a tag to compare

Minor fixes

  • We now focus the last executed task. → closes #27

More info

You can just copy paste the config from here.

Special thanks

@aaronmcadam for reporting the issue and @stevearc for fixing it.

v3.3.6

09 Jun 16:21
Compare
Choose a tag to compare

New features

  • gradle: The parser is now capable of parsing both, the tasks returned by the command gradle list, and user defined tasks from your gradle.build file.

screenshot_2024-06-09_18-18-37_945100343

Special thanks

@Cliffback for the PR #40

v3.3.5

05 Jun 21:14
Compare
Choose a tag to compare

New features

  • Support for paths with spaces has been added.

Special thanks

To @Gaweringo for testing this feature.

v3.3.4

26 May 17:03
Compare
Choose a tag to compare

New language added

  • Support for the fortran programming language has been added.

screenshot_2024-05-26_23-51-51_317572729

screenshot_2024-05-26_22-57-09_331826239

Credits

Thanks to @Shad0wRim

v3.3.3

25 Apr 21:19
Compare
Choose a tag to compare

Minor fixes

  • :CompilerRedo is now (for real) compatible with build automation utilities.

v3.3.2

25 Mar 01:16
511cb72
Compare
Choose a tag to compare

This version focuses on improving the features added in v3.3.0.

New features

  • meson.build parser now support multi line entries of executable and custom_target.
  • CMakeLists.txt parser now support multi line entries of add_executable and add_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

24 Mar 20:52
c16eeb5
Compare
Choose a tag to compare

New features

  • .solution.toml: now accept entry_point = "$current_buffer".

Example

# This example run 'python -m <current_buffer_path>'.
[RunPythonFileAsModule]
entry_point = "$current_buffer"
arguments = "-m"

v3.3.0

23 Mar 03:19
Compare
Choose a tag to compare

New feature

  • Meson support: When the file meson.build exist in the current working directory, Telescope will be populated with all its executable and custom_target entries.

screenshot_2024-03-23_04-05-25_431130767

screenshot_2024-03-23_04-56-59_219214553

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.

v3.2.7

18 Feb 00:26
c1d9230
Compare
Choose a tag to compare

New features

  • C# dotnet watch Reflect changes in your program in real time. Submitted by @Cliffback#30

screenshot_2024-02-09_16-58-00_262443649

Minor fixes

  • swift REPL command.

v3.2.6

04 Feb 14:04
Compare
Choose a tag to compare

New features

  • Swift cli
  • Swift REPL

screenshot_2024-02-04_15-04-19_564953696