Skip to content

Extensible Neovim plugin for executing commands that compile and run projects.

License

Notifications You must be signed in to change notification settings

rleathart/CompileMe.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Summary

Ever wished that compiling/running your projects in Vim was as simple as pressing a button? This plugin does that.

:CompileMe is the main command associated with this plugin. You can get options supported for your project with tab completion. For example, :CompileMe compile will build your project and :CompileMe compile_and_run will compile your project, and then run it.

CompileMe will run commands in Vim's shell, or in a terminal buffer if one is visible on the screen.

CMake demo

Tested with

  • Powershell Core
  • Windows Powershell
  • cmd.exe
  • Bash

Requirements

Extending CompileMe

This plugin is designed to be extensible so you can add your own compilers and detectors! You can even add functionality for things like running your project's test suite. For example, let's say you want to add a new python project type:

-- Somewhere in your init.lua
-- Add Python to the Project.Type table
require('CompileMe.project').Type.Python = "Python"

-- Create a new detector function for our python project type
table.insert(require('CompileMe.project').detectors, function (bufnr)
  if #vim.fn.findfile('main.py', ';') > 0 then
    return require('CompileMe.project').Type.Python
  end
end)

Then, in stdpath('config')/lua/CompileMe/compilers you can have

-- stdpath('config')/lua/CompileMe/compilers/python.lua
-- Note: the compiler filename must be the same as
-- require('CompileMe.project').Type.Python except in all lowercase

local Task = require 'CompileMe.task'
local Command = require 'CompileMe.command'

local M = {}

M.compile = function()
  -- Python code doesn't need to be compiled
  return Task{}
end

M.run = function()
  -- This is a super simple run function that just upward searches for a file
  -- called main.py and executes it. These functions can be as complex as you like
  return Task{
    Command{
      args = {'python3', vim.fn.findfile('main.py', ';')}
    }
  }
end

M.compile_and_run = function ()
  -- You can combine tasks with the + operator
  return M.compile() + M.run()
end

return M

About

Extensible Neovim plugin for executing commands that compile and run projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published