Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

v0.4.0

Compare
Choose a tag to compare
@lukas-reineke lukas-reineke released this 22 Dec 08:17
· 74 commits to master since this release

v0.4.0

BREAKING CHANGES

  • Truncation now requires the nvim_eval_statusline API function. As a result, it will not work without the master branch of Neovim
  • The colors configuration option in the setup function now needs to be renamed to theme
  • The diagnostics_exist utility function now takes an integer containing the diagnostic severity instead of a string. For more info, do :help vim.diagnostic.severity in Neovim.

What's new

  • add mode alias for "nt" (#156)
  • allow better customization of vi_mode
  • allow configuring presets Feline on the fly
  • add color theme support
  • allow configuring position provider padding
  • Add nt mode (#174)
  • add fileformat provider (#177)

Bugfixes

  • make truncation work on Windows
  • make minimal init and benchmark work with Windows
  • use column number instead of byte index for position
  • make position provider column number start from 1
  • make file_info provider not return a trailing whitespace (#171)
  • use vim.diagnostic for lsp provider

Documentation

  • Add EdenEast example configuration (#153)
  • update links to feline repo (#180)

Miscellaneous

  • minor cosmetic changes