Skip to content

Releases: s1n7ax/nvim-window-picker

v2.0.3

17 Dec 06:00
41cfaa4
Compare
Choose a tag to compare

2.0.3 (2023-12-17)

Features

  • rel: add release-please version.txt (82f9032)

Bug Fixes

  • error due to missing semicolon in big letters (#77) (f32f4f7)
  • filter_func is not called (#78) (794fd5e)
  • floating-big-letter: calculate max width (#74) (154b2c4), closes #69
  • nil error when backward compatibility highlights are set (#79) (7c936dd)
  • No 2 is not displayed correctly in floating window (#70) (e7b6699)
  • release 2.0.2 in manifest (b0eed25)
  • release using default access token (41c4677)
  • remove unwanted diagnostic disable comments (886f541)
  • unwanted extra return (#59) (944c2fc)

Miscellaneous Chores

v2.0.2

29 Jul 06:59
Compare
Choose a tag to compare

2.0.2 (2023-07-29)

⚠ BREAKING CHANGES

  • restructer pickers

Features

  • add ability to use winbar for selection (df93ab7)
  • add compatibility to old config style (5fca333)
  • add demo videos (3154cae)
  • add fg_color config option for setting text color (aa36f61)
  • add floating window picker (a63245f)
  • add hint specific config properties (94d7d1e)
  • add option "selection_display" to change display (f80963b)
  • add option "use_cmd" to show or not message in cmdline (d65aaad)
  • add statusline & winbar hint (d645ac7)
  • add support to big letter float from config (722c2a4)
  • dev: add current win selector for dev testing (78027ec)
  • doc: add a usage example (d840ed3)
  • doc: update read me to 2.0 (195bb94)
  • doc: update readme (f2a0dd2)
  • doc: update readme (28c6790)
  • init commit (7b6c59f)
  • rel: add release-please version.txt (82f9032)

Bug Fixes

  • builder does not set the default values if custom is not passed (7404d4f)
  • doc: fix plugin tag name (a653009)
  • doc: fix readme (fe71d0a)
  • enable configuration through setup call (#37) (c6b343b)
  • error thrown when window is not available #4 (8c3bdb5)
  • fix all curr win adding up to config (2d749f1)
  • fix formatting and linting (#40) (0bb349b)
  • fix invalid config access in pick_window() (230589b)
  • fix window not highlighting issue (1c84e48)
  • floating windows shouldn't count as selectable (588caa5)
  • highlight not modifiable (#27) (65bbc52)
  • limit window selection to current tab (9f113d6)
  • make floating windows work with input char native fn (4dc0cd7)
  • Not enough space when trying to set winbar (bed6555)
  • pick window is shown when no windows to hint (ca789c7)
  • picker is not visible when cmdheight=0 (8f5447f)
  • release 2.0.2 in manifest (b0eed25)
  • remove unwanted diagnostic disable comments (886f541)
  • typo in nvim_set_hl (#48) (90fcbf9)
  • unable to change mode select win or startus bar when default is false (8e4a314)
  • unwanted extra return (#59) (944c2fc)
  • update default filter_rules (92be3fe)
  • use new property values from use_winbar (a53a3b7)

Miscellaneous Chores

Code Refactoring

v2.0.1

04 Jul 14:27
6e98757
Compare
Choose a tag to compare

2.0.1 (2023-07-04)

Bug Fixes

v2.0.0

21 Jun 18:08
2c8200c
Compare
Choose a tag to compare

2.0.0 (2023-06-21)

⚠ BREAKING CHANGES

  • restructer pickers

Features

  • add ability to use winbar for selection (df93ab7)
  • add compatibility to old config style (5fca333)
  • add demo videos (3154cae)
  • add fg_color config option for setting text color (aa36f61)
  • add floating window picker (a63245f)
  • add hint specific config properties (94d7d1e)
  • add option "selection_display" to change display (f80963b)
  • add option "use_cmd" to show or not message in cmdline (d65aaad)
  • add statusline & winbar hint (d645ac7)
  • add support to big letter float from config (722c2a4)
  • dev: add current win selector for dev testing (78027ec)
  • doc: add a usage example (d840ed3)
  • doc: update read me to 2.0 (195bb94)
  • doc: update readme (f2a0dd2)
  • doc: update readme (28c6790)
  • init commit (7b6c59f)

Bug Fixes

  • builder does not set the default values if custom is not passed (7404d4f)
  • doc: fix plugin tag name (a653009)
  • doc: fix readme (fe71d0a)
  • enable configuration through setup call (#37) (c6b343b)
  • error thrown when window is not available #4 (8c3bdb5)
  • fix all curr win adding up to config (2d749f1)
  • fix formatting and linting (#40) (0bb349b)
  • fix invalid config access in pick_window() (230589b)
  • fix window not highlighting issue (1c84e48)
  • floating windows shouldn't count as selectable (588caa5)
  • highlight not modifiable (#27) (65bbc52)
  • limit window selection to current tab (9f113d6)
  • make floating windows work with input char native fn (4dc0cd7)
  • Not enough space when trying to set winbar (bed6555)
  • pick window is shown when no windows to hint (ca789c7)
  • picker is not visible when cmdheight=0 (8f5447f)
  • unable to change mode select win or startus bar when default is false (8e4a314)
  • update default filter_rules (92be3fe)
  • use new property values from use_winbar (a53a3b7)

Code Refactoring

Miscellaneous Chores

v1.5

11 Dec 16:54
Compare
Choose a tag to compare

Features:

  • show_prompt to enable/disable Pick window: prompt
require 'window-picker'.setup({
    -- disables the prompt
    show_prompt = true,
})
  • selection_display to change window char indicators
require 'window-picker'.setup({
    -- shows the file name alongside the window char
    selection_display = function (char) return string.format('[%s] %s', char, '%f') end
})

v1.4

13 Oct 18:12
Compare
Choose a tag to compare

Features:

  • Add ability to use winbar for selection
-- whether you want to use winbar instead of the statusline
-- "always" means to always use winbar,
-- "never" means to never use winbar
-- "smart" means to use winbar if cmdheight=0 and statusline if cmdheight > 0
use_winbar = 'never', -- "always" | "never" | "smart"

Fixes:

  • Picker selection is not visible when cmdheight=0

v1.3

24 Apr 00:34
Compare
Choose a tag to compare

fix: floating windows shouldn't count as selectable #5

v1.2

11 Apr 10:49
Compare
Choose a tag to compare

fix: error thrown when window is not available #4

v1.1

09 Apr 08:50
Compare
Choose a tag to compare

fix: add neo-tree and notify to filter rules
fix: consider only windows in the current tab

v1.0

03 Apr 15:40
Compare
Choose a tag to compare
refactor: remove WIP from doc