Going further (neovim plugin project)

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

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
  • splitjoin.vim

    Switch between single-line and multiline forms of code

  • In terms of testing methodology, you can take a look at some of my specs. It boils down to: edit a file in a temp dir, run some mappings/commands, save the file, check its updated content. In your case, evaluating execute("messages") might give you the output of your plugin, but make sure to use echomsg instead of echo, otherwise it won't end up in the messages output.

  • vimrunner

    Control a vim instance through ruby code

  • I don't have personal experience with it myself, so can't say how well it works. I use my own Vimrunner project for all my plugins (and I prefer it -- easier for me to write tests in ruby than in a custom file format), but it's also based on +clientserver so it won't work for your case. Would be happy to talk over a PR, of course :). But if you don't feel like doing work on testing tools, vroom might be a good option.

  • 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.

    InfluxDB logo
  • vroom

    Launch vim tests (by google)

  • You might try the "vroom" project: https://github.com/google/vroom. It uses +clientserver by default, which Neovim doesn't support, but it seems like it has a "neovim mode" as well.

  • aniseed

    Neovim configuration and plugins in Fennel (Lisp compiled to Lua)

  • I wrote Aniseed so I could write my plugins in a lisp and run them as Lua, I designed a test suite system around this and some helper scripts to open nvim and execute my test suite when required in CI or locally. It's all kinda half copied from Clojure since I love how testing works in Clojure already.

  • conjure

    Interactive evaluation for Neovim (Clojure, Fennel, Janet, Racket, Hy, MIT Scheme, Guile, Python and more!)

  • Ohhh some remarkably similar ideas to my Conjure (well, in the sense that they're about evaluating code). Conjure is all about sending code to a running REPL and interactively developing your application as it runs, so slightly different but still the same category.

  • vim-enmasse

    Edit every line in a quickfix list at the same time

  • The only other example I have is an older plugin of mine: vim-enmasse - that's traditional vimscript so it might be a better example for you.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Existing non-lua plugins examples

    8 projects | /r/neovim | 6 Dec 2023
  • what do you guys use treesitter for?

    11 projects | /r/neovim | 16 Aug 2022
  • Plugin developers, how do you manage your repos?

    5 projects | /r/vim | 16 Jul 2021
  • Lisp Programming with Vim (2019)

    1 project | news.ycombinator.com | 24 Feb 2024
  • Conjure: Evaluating code within your running program

    1 project | news.ycombinator.com | 16 Feb 2024