move.nvim VS nvim-surround

Compare move.nvim vs nvim-surround and see what are their differences.

move.nvim

Gain the power to move lines and blocks and auto-indent them! (by fedepujol)

nvim-surround

Add/change/delete surrounding delimiter pairs with ease. Written with :heart: in Lua. (by kylechui)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
move.nvim nvim-surround
8 29
299 2,582
- -
6.0 7.2
about 2 months ago about 1 month ago
Lua Lua
GNU General Public License v3.0 only 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.

move.nvim

Posts with mentions or reviews of move.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-08.

nvim-surround

Posts with mentions or reviews of nvim-surround. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-30.
  • An opinionated article about vim
    6 projects | dev.to | 30 Jun 2023
    (Neo)vim supports plugins, which make your code editor much better. You need a faster way to comment stuff? Sure, here is nvim-comment. Now you need a better tool to surround text by certain characters? Alright, we also have nvim-surround. And this goes on for almost everything you ever needed. And in the rare case that you can't find a plugin for what you need: Write it yourself! It's very easy to write plugins, as vim and neovim both have a lot of functions that help with writing those.
  • Using Floaterm, what's the best way to toggle between the editor and opened window and maintain the shell session?
    2 projects | /r/neovim | 6 Jun 2023
    So, I've been using floaterm and I like it a lot so far! But my ideal workflow would look like this
  • Can I separate `v` and `vi/va` like Helix?
    3 projects | /r/neovim | 24 Feb 2023
    Oh sorry I forgot to add additional context. I already have keymaps that starts with m but not dealing visual mode. For example, I'm using ms, mr, md for nvim-surround. That is why I'm trying to map mi and ma, not just m for entering visual mode.
  • Automatically encapsulate or surround existing code with symbol pair
    2 projects | /r/nvim | 31 Jan 2023
    I'm trying out https://github.com/kylechui/nvim-surround (maybe a Lua port of that same plugin) and it it seems very capable. With some remapped shortcuts I think I can bend it to my will. Thanks!
  • markdowny.nvim
    5 projects | /r/neovim | 13 Jan 2023
    The other plugin that can do this is kylechui/nvim-surround. Not sure how to set it up, though.
  • ns-textobject.nvim update! Smater, more useful!
    2 projects | /r/neovim | 31 Dec 2022
    require("ns-textobject").setup({}) -- from https://github.com/kylechui/nvim-surround/discussions/53#discussioncomment-3134891 require("nvim-surround").buffer_setup({ surrounds = { ["l"] = { add = function() local clipboard = vim.fn.getreg("+"):gsub("\n", "") return { { "[" }, { "](" .. clipboard .. ")" }, } end, find = "%b[]%b()", delete = "^(%[)().-(%]%b())()$", change = { target = "^()()%b[]%((.-)()%)$", replacement = function() local clipboard = vim.fn.getreg("+"):gsub("\n", "") return { { "" }, { clipboard }, } end, }, }, },
  • NeoVim as IDE
    2 projects | /r/neovim | 8 Dec 2022
    this might actually be a better surround plugin for surround https://github.com/kylechui/nvim-surround
  • Is there any neovim plugin that have 'Surround code fragments' functionality like the Jetbrains IDEs?
    6 projects | /r/neovim | 1 Nov 2022
    kylechui/nvim-surround
  • Adding surround.nvim to AstroNvim
    2 projects | /r/neovim | 26 Oct 2022
    I am using AstroNvim config and would like to add or enable surround.nvim plugin for all my projects.
  • Convince me why I should be using Vim instead. What do you love about it?
    3 projects | /r/vim | 13 Sep 2022
    One more though: How can I see which plugins are installed, and how can I download new ones? To get my language servers in place, I used Mason. But I don't see things like plugins (I guess LSPs are not considered plugins?), which I had expected to, so I'm not sure Mason is the correct tool for plugin management. For example, I'd like to check whether my colleague's setup (and thus mine) includes this plugin, and if not, to install it. I could just ask him of course, but he's pretty senior, and I like to maintain an façade of semi-competence at work that constant pestering would shatter ;)

What are some alternatives?

When comparing move.nvim and nvim-surround you can also consider the following projects:

vim-sandwich - Set of operators and textobjects to search/select/edit sandwiched texts.

mini.nvim - Library of 35+ independent Lua modules improving overall Neovim (version 0.7 and higher) experience with minimal effort

indent-blankline.nvim - Indent guides for Neovim

nvim-treesitter-textobjects

vim-surround - surround.vim: Delete/change/add parentheses/quotes/XML-tags/much more with ease

Navigator.nvim - :sparkles: Smoothly navigate between neovim and terminal multiplexer(s) :sparkles:

mini.move - Neovim Lua plugin to move any selection in any direction. Part of 'mini.nvim' library.

nvim-parinfer - parinfer for Neovim

cinnamon.nvim - Smooth scrolling for ANY movement command 🤯. A Neovim plugin written in Lua!

toggleterm.nvim - A neovim lua plugin to help easily manage multiple terminal windows

nvim-lspconfig - Quickstart configs for Nvim LSP

syntax-tree-surfer - A plugin for Neovim that helps you surf through your document and move elements around using the nvim-treesitter API.