winpick.nvim VS nvim-window

Compare winpick.nvim vs nvim-window and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
winpick.nvim nvim-window
2 8
48 -
- -
0.0 -
over 1 year ago -
Lua
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

winpick.nvim

Posts with mentions or reviews of winpick.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-10.
  • winpick.nvim: Plugin for picking a window
    5 projects | /r/neovim | 10 Aug 2022
    The issue I had was, when there were multiple windows open in a tabpage, navigation between nonadjacent windows used to be slow for me. Therefore I decided to create something to quickly navigate between them: winpick.nvim.
  • What is the most interesting part of your Lua config?
    6 projects | /r/neovim | 4 Jan 2022
    Another cool thing I made was a window picker, which I decided to publish as a plugin. It is integrated with my custom FZF providers, so whenever I choose an item from the fuzzy list, it calls the window picker so I can choose in which open window I should open that file. You can find it here.

nvim-window

Posts with mentions or reviews of nvim-window. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-22.
  • What do you use besides Neovim to manage windows (workflow)?
    2 projects | /r/neovim | 22 Aug 2022
    I'm using https://gitlab.com/yorickpeterse/nvim-window to jump between neovim's windows (mapped to w).
  • winpick.nvim: Plugin for picking a window
    5 projects | /r/neovim | 10 Aug 2022
    What is the difference, in your opinion, or maybe selling point between this plugin and the other ones like it? For example nvim-window and nvim-window-picker, to name the Lua ones that I can think of.
  • Hydra update
    3 projects | /r/neovim | 18 Jul 2022
    Now, Neovim will wait for users input inside hydra if it is required: for example, for nvim-window and so on.
  • nvim-window-picker: nvim-tree like window picker plugin
    4 projects | /r/neovim | 5 Apr 2022
    A while back I wrote an equivalent (but probably much simpler and more limited) plugin for NeoVim: https://gitlab.com/yorickpeterse/nvim-window.
  • Global statusline support merged to Neovim master
    4 projects | /r/neovim | 17 Mar 2022
    hey look! https://gitlab.com/yorickpeterse/nvim-window
  • Window numbering package for vim/neovim (like winum in emacs)?
    3 projects | /r/neovim | 17 Dec 2021
    I've found nvim-window and vim-win, which sort of provide this behaviour.
  • https://np.reddit.com/r/neovim/comments/ommttr/neovim_05_golang_setup/h5mi9qo/
    1 project | /r/backtickbot | 18 Jul 2021
    return require('packer').startup { function(use) use 'wbthomason/packer.nvim' -- hacks use 'tjdevries/astronauta.nvim' -- git use {'tpope/vim-fugitive'} --use 'airblade/vim-gitgutter' use {'lewis6991/gitsigns.nvim', requires = {'nvim-lua/plenary.nvim'}} use 'tweekmonster/startuptime.vim' -- text manipulation use 'tpope/vim-surround' use 'mattn/emmet-vim' -- navigation use {'kyazdani42/nvim-tree.lua'} use 'phaazon/hop.nvim' use {'https://gitlab.com/yorickpeterse/nvim-window'} use { 'nvim-telescope/telescope.nvim', requires = {{'nvim-lua/popup.nvim'}, {'nvim-lua/plenary.nvim'}} } use { 'camspiers/snap' } use { "folke/trouble.nvim", requires = "kyazdani42/nvim-web-devicons", config = function() require("trouble").setup{} end } -- Highlights use { 'nvim-treesitter/nvim-treesitter', requires = { 'nvim-treesitter/nvim-treesitter-refactor', 'nvim-treesitter/nvim-treesitter-textobjects' }, -- config = [[require('settings/plugins/treesitter')]] } use {'nvim-treesitter/playground'} -- Indentation tracking use { 'lukas-reineke/indent-blankline.nvim', } -- Completion and linting use 'neovim/nvim-lspconfig' use {'hrsh7th/nvim-compe', 'onsails/lspkind-nvim'} use 'hrsh7th/vim-vsnip' use 'rafamadriz/friendly-snippets' use 'windwp/nvim-autopairs' use 'nvim-lua/lsp-status.nvim' -- use 'dense-analysis/ale' -- misc use 'tpope/vim-sleuth' use { "folke/which-key.nvim", config = function() require("which-key").setup{} end } use {'folke/zen-mode.nvim', config = function() require("zen-mode").setup {} end} use 'tpope/vim-commentary' use 'glepnir/dashboard-nvim' use 'rafcamlet/nvim-luapad' -- colors -- use 'https://git.konart.dev/konart/ciapre.vim' use '~/build/personal/ciapre.vim' -- UI use { 'glepnir/galaxyline.nvim', branch = 'main', -- your statusline -- config = function() require'settings/plugings' end, -- some optional icons requires = {'kyazdani42/nvim-web-devicons', opt = true} } use {'akinsho/nvim-bufferline.lua', requires = {'kyazdani42/nvim-web-devicons', opt = true}} end }
  • Neovim 0.5 - Golang setup
    3 projects | /r/neovim | 18 Jul 2021
    -- hacks use 'tjdevries/astronauta.nvim' -- git use {'tpope/vim-fugitive'} --use 'airblade/vim-gitgutter' use {'lewis6991/gitsigns.nvim', requires = {'nvim-lua/plenary.nvim'}} use 'tweekmonster/startuptime.vim' -- text manipulation use 'tpope/vim-surround' use 'mattn/emmet-vim' -- navigation use {'kyazdani42/nvim-tree.lua'} use 'phaazon/hop.nvim' use {'https://gitlab.com/yorickpeterse/nvim-window'} use { 'nvim-telescope/telescope.nvim', requires = {{'nvim-lua/popup.nvim'}, {'nvim-lua/plenary.nvim'}} } use { 'camspiers/snap' } use { "folke/trouble.nvim", requires = "kyazdani42/nvim-web-devicons", config = function() require("trouble").setup{} end } -- Highlights use { 'nvim-treesitter/nvim-treesitter', requires = { 'nvim-treesitter/nvim-treesitter-refactor', 'nvim-treesitter/nvim-treesitter-textobjects' }, -- config = [[require('settings/plugins/treesitter')]] } use {'nvim-treesitter/playground'}

What are some alternatives?

When comparing winpick.nvim and nvim-window you can also consider the following projects:

vim-choosewin - Land on window you chose like tmux's 'display-pane'

nvim-window-picker - This plugins prompts the user to pick a window and returns the window id of the picked window

FTerm.nvim - :fire: No-nonsense floating terminal plugin for neovim :fire:

neovim-dotfiles - luong komorebi neovim lua configurations

Comment.nvim - :brain: :muscle: // Smart and powerful comment plugin for neovim. Supports treesitter, dot repeat, left-right/up-down motions, hooks, and more

nvim-dotfiles-kitty - Neovim + Kitty = ❤️

dotfiles - My dotfiles

emacs-winum - Window numbers for Emacs - Navigate windows and frames using numbers

hydra.nvim - Create custom submodes and menus

dotfiles