add new picking global (Pick)

this allows you to run `Pick` instead of `require('data.func').pick`
Makes accessing the picker function easier/quicker/cleaner.
This is now implemented throughout the config.
This commit is contained in:
2025-02-08 20:16:14 -05:00
parent 286df25462
commit f6074cc198
+8
View File
@@ -33,5 +33,13 @@ local function setup()
end
end
local function define_globals()
-- Define Pick function
Pick = require('data.func').pick
end
-- Run Setup function
setup()
-- Define Global Functions
define_globals()