From 61e126414ebba3fa887e67c760de7696e3da17b9 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Wed, 7 Sep 2022 00:11:53 +0200 Subject: [PATCH] fix(rockspec): fixed format + ran formatter --- nvim-cmp-scm-1.rockspec | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/nvim-cmp-scm-1.rockspec b/nvim-cmp-scm-1.rockspec index 2c72b0e49..11be9432d 100644 --- a/nvim-cmp-scm-1.rockspec +++ b/nvim-cmp-scm-1.rockspec @@ -1,38 +1,37 @@ -local MODREV, SPECREV = "scm", "-1" -rockspec_format = "3.0" -package = "nvim-cmp" +local MODREV, SPECREV = 'scm', '-1' +rockspec_format = '3.0' +package = 'nvim-cmp' version = MODREV .. SPECREV description = { - summary = "A completion plugin for neovim", - labels = { "neovim" }, + summary = 'A completion plugin for neovim', + labels = { 'neovim' }, detailed = [[ A completion engine plugin for neovim written in Lua. Completion sources are installed from external repositories and "sourced". ]], - homepage = "https://github.com/hrsh7th/nvim-cmp", - license = "MIT", + homepage = 'https://github.com/hrsh7th/nvim-cmp', + license = 'MIT', } dependencies = { - "lua >= 5.1, < 5.4", + 'lua >= 5.1, < 5.4', } source = { - url = "http://github.com/hrsh7th/nvim-cmp/archive/v" .. MODREV .. ".zip", - dir = "nvim-cmp-" .. MODREV, + url = 'http://github.com/hrsh7th/nvim-cmp/archive/v' .. MODREV .. '.zip', + dir = 'nvim-cmp-' .. MODREV, } -if MODREV == "scm" then +if MODREV == 'scm' then source = { - url = "git://github.com/hrsh7th/nvim-cmp", + url = 'git://github.com/hrsh7th/nvim-cmp', } end build = { - type = "builtin", -} -copy_directories = { - 'lua', - 'autoload', - 'plugin', + type = 'builtin', + copy_directories = { + 'autoload', + 'plugin' + } }