Compare commits
2 commits
6c7fe0688e
...
56ca8a3857
Author | SHA1 | Date | |
---|---|---|---|
56ca8a3857 | |||
1c94450012 |
2 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
local M = {}
|
||||
|
||||
local bootstrap = function(path)
|
||||
if not vim.loop.fs_stat(path) then
|
||||
if not vim.uv.fs_stat(path) then
|
||||
vim.fn.system {
|
||||
"git",
|
||||
"clone",
|
||||
|
@ -21,7 +21,7 @@ local dev_path = function()
|
|||
"~/.local/src",
|
||||
}
|
||||
paths = vim.tbl_map(vim.fn.expand, paths)
|
||||
paths = vim.tbl_filter(vim.loop.fs_stat, paths)
|
||||
paths = vim.tbl_filter(vim.uv.fs_stat, paths)
|
||||
return paths[1]
|
||||
end
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ return {
|
|||
"TextCaseStartReplacingCommand",
|
||||
},
|
||||
|
||||
dev = true,
|
||||
|
||||
keys = function()
|
||||
local icon = require("fschauen.util.icons").ui.Text
|
||||
local description = icon .. " [c]hange text [c]ase"
|
||||
|
|
Loading…
Add table
Reference in a new issue