Releases: ej-shafran/compile-mode.nvim
Releases · ej-shafran/compile-mode.nvim
v5.12.0
Also includes several documentation changes.
Added
- Some keymaps in the compilation buffer that the Emacs plugin has (
<Tab>and<S-Tab>for going back and forth through errors, and<LeftMouse>for clicking on errors) - The ability to configure the Neovim statusline to show information about compilations, either using
:h 'statusline'or with plugins, including a builtin extension forlualine- see:h compile-mode-statusline
Fixed
- Colors disappearing when reloading some colorschemes or loading them after the
plugin/highlights.vimfile was loaded
v5.11.0
Also includes several documentation changes.
Added
- The
auto_scrollconfiguration option (which defaults totrue), allowing users to opt out of auto-scrolling behavior - by @mttgermano - The ability to set
default_commandto a function or a table (from filetype to command, with"*"acting as a fallback) - by @BrandenXia - The
use_pseudo_terminaloption, which sets theptyoption for:h jobstart()- by @BrandenXia
v5.10.2
Also includes several documentation changes.
Added
- Warning if
baleiacould not berequired whenbaleia_setupis passed
Fixed
- The behavior of
bang_expansionwhenfocus_compilation_bufferis also set totrue- by @mttgermano
v5.10.1
Fixed
- Error when jumping to an error in a buffer with unsaved changes
v5.10.0
Added
- The
use_circular_error_navigationoption, which allowsNextErrorandPrevErrorto cycle through errors even at the start or end - by @brunobmello25
Fixed
- No longer ask to save unlisted buffers
v5.9.0
v5.8.2
v5.8.1
v5.8.0
Added
- The
focus_compilation_bufferoption, which keeps focus on the compilation buffer when compiling - solves #69, by @arnevm123
v5.7.1
Fixed
- Disable swapfile for compilation buffer - fixes #41, by @PrescientSentinel
- Strip carriage returns from the end of lines - fixes #72, by @StillTree
- Removed warnings for "unrecognized keys" for the
error_ignore_file_listandhidden_outputoptions - fixes #78, by @arnevm123