refactor(struct_tags): rename M to struct_tags
This commit is contained in:
parent
70fece189d
commit
5e7ecf382a
1 changed files with 4 additions and 4 deletions
|
|
@ -2,7 +2,7 @@ local ts_utils = require "gopher._utils.ts"
|
||||||
local Job = require "plenary.job"
|
local Job = require "plenary.job"
|
||||||
local c = require("gopher.config").commands
|
local c = require("gopher.config").commands
|
||||||
local u = require "gopher._utils"
|
local u = require "gopher._utils"
|
||||||
local M = {}
|
local struct_tags = {}
|
||||||
|
|
||||||
local function modify(...)
|
local function modify(...)
|
||||||
local fpath = vim.fn.expand "%" ---@diagnostic disable-line: missing-parameter
|
local fpath = vim.fn.expand "%" ---@diagnostic disable-line: missing-parameter
|
||||||
|
|
@ -85,7 +85,7 @@ end
|
||||||
|
|
||||||
---add tags to struct under cursor
|
---add tags to struct under cursor
|
||||||
---@param ... unknown
|
---@param ... unknown
|
||||||
function M.add(...)
|
function struct_tags.add(...)
|
||||||
local arg = { ... }
|
local arg = { ... }
|
||||||
if #arg == nil or arg == "" then
|
if #arg == nil or arg == "" then
|
||||||
arg = { "json" }
|
arg = { "json" }
|
||||||
|
|
@ -101,7 +101,7 @@ end
|
||||||
|
|
||||||
---remove tags to struct under cursor
|
---remove tags to struct under cursor
|
||||||
---@param ... unknown
|
---@param ... unknown
|
||||||
function M.remove(...)
|
function struct_tags.remove(...)
|
||||||
local arg = { ... }
|
local arg = { ... }
|
||||||
if #arg == nil or arg == "" then
|
if #arg == nil or arg == "" then
|
||||||
arg = { "json" }
|
arg = { "json" }
|
||||||
|
|
@ -115,4 +115,4 @@ function M.remove(...)
|
||||||
modify(unpack(cmd_args))
|
modify(unpack(cmd_args))
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return struct_tags
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue