Compare commits

..

No commits in common. "56ca8a38573ca147b17381b9c92059e474254f0f" and "6c7fe0688ef8d1c8accb58a492a8a9d36519b127" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -1,7 +1,7 @@
local M = {} local M = {}
local bootstrap = function(path) local bootstrap = function(path)
if not vim.uv.fs_stat(path) then if not vim.loop.fs_stat(path) then
vim.fn.system { vim.fn.system {
"git", "git",
"clone", "clone",
@ -21,7 +21,7 @@ local dev_path = function()
"~/.local/src", "~/.local/src",
} }
paths = vim.tbl_map(vim.fn.expand, paths) paths = vim.tbl_map(vim.fn.expand, paths)
paths = vim.tbl_filter(vim.uv.fs_stat, paths) paths = vim.tbl_filter(vim.loop.fs_stat, paths)
return paths[1] return paths[1]
end end

View file

@ -10,8 +10,6 @@ return {
"TextCaseStartReplacingCommand", "TextCaseStartReplacingCommand",
}, },
dev = true,
keys = function() keys = function()
local icon = require("fschauen.util.icons").ui.Text local icon = require("fschauen.util.icons").ui.Text
local description = icon .. " [c]hange text [c]ase" local description = icon .. " [c]hange text [c]ase"