fix global modules to local

master
blob42 1 year ago
parent dceac7591d
commit 67be596154

@ -10,7 +10,7 @@ local config = {
}
M = {}
local M = {}
M.setup = function()
signature.setup(config)
end

@ -4,6 +4,7 @@ if not present then
return
end
local M = {}
local types = require("luasnip.util.types")
local options = {

@ -5,7 +5,7 @@ if not present then
end
M = {}
local M = {}
local config = {
bookmark_0 = {

@ -4,7 +4,7 @@ if not present then
return
end
M = {}
local M = {}
local config = {
keywords = {

@ -1,7 +1,7 @@
local libmodal = require 'libmodal'
local daputils = require 'spike.dap.utils'
M = {}
local M = {}
M.layer = nil

@ -43,7 +43,7 @@ as global variable
:bufdo — Execute the command in each buffer in the buffer list
:tabdo — Execute the command in each tab page
:windo — Execute the command in each window
:cdo — Execute the command in each valid entry in the quickfix list
:cdo — Execute the command in each valid entry in the quickfix list (entry itself not the file)
:cfdo — Execute the command in each file in the quickfix list
:vimgrep `:vimgrep /<pattern>/ ##` where ## is replaces with files in arg list
@ -51,3 +51,8 @@ as global variable
`packadd cfilter`
`:Cfilter /pattern/`
`:Lfilter /pattern`
## Delete lines matching pattern
!! Use the :global command
:g/profile/d

Loading…
Cancel
Save