Skip to content

Releases: DanilaMihailov/beacon.nvim

Release 1.3.3 - Fix Ctrl-E/Ctrl-Y jumps triggering beacon

01 Jul 10:48
5ab668c
Compare
Choose a tag to compare

Now jump detection uses relative line numbers and absolute.

Release 1.3.2 - Ignore filetypes

30 Jun 18:00
ce6fddc
Compare
Choose a tag to compare

Added option to ignore filetypes (thanks to @infinite-ops with PR #10)

Now you can set ignored filetypes like this

 g:beacon_ignore_filetypes = ['fzf']

Release 1.3.1 - Better jump detection

28 Jun 13:08
ffeb621
Compare
Choose a tag to compare

Now plugin uses screen rows to calculate distance (thanks to @ayyess with PR #6). What it means is better fold ignoring and only flash when cursor changes position relative to window.

Vim 8.2 support!

28 Jun 11:00
fb5a1ec
Compare
Choose a tag to compare

Added support for Vim 8.2.

Support for older versions of vim and neovim are in the works.

Fix moves over folds

27 Jun 11:22
c30410a
Compare
Choose a tag to compare
v1.2.4

ignore moves over folds (#5)

Release 1.2.3 - Fix beacon hiding prematurely

26 Jun 05:25
Compare
Choose a tag to compare
v1.2.3

fix: beacon hiding prematurely

Release 1.2.2 - Fix plugin loading multiple times

25 Jun 15:52
Compare
Choose a tag to compare

Now :PlugInstall works as it should without breaking the plugin.

Release 1.2.1 - Fix bug with sessions

25 Jun 04:21
Compare
Choose a tag to compare

Now plugin checks if window is still valid before doing anything with it. Should be more robust!

Version 1.2.0 - Commands

24 Jun 14:58
460cd2b
Compare
Choose a tag to compare

Added

Options

  • g:beacon_enable to enable/disable plugin

Commands

  • :Beacon highlight current position (even if plugin is disabled)
  • :BeaconToggle toggle g:beacon_enable variable
  • :BeaconOn enable Beacon
  • :BeaconOff disable Beacon

Version 1.1.0 - Ignore buffers

24 Jun 14:07
Compare
Choose a tag to compare

Added

  • ignore buffers with g:beacon_ignore_buffers = [] option

Made it a little bit faster, by removing unnecessary autocmds.