mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-05-28 17:03:48 +00:00
scratch: add thoughts
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
local uv = require('luv')
|
||||
|
||||
-- print(vim.inspect(uv))
|
||||
|
||||
|
||||
local my_table = {}
|
||||
local my_value = 1
|
||||
|
||||
local table_adder = uv.new_thread(function(tbl)
|
||||
table.insert(tbl, "HELLO")
|
||||
end, my_table)
|
||||
|
||||
uv.thread_join(table_adder)
|
||||
-- print(vim.inspect(MY_TABLE))
|
||||
|
||||
Reference in New Issue
Block a user