Improve vim-motion-based line moving shortcuts

This commit is contained in:
2025-01-20 09:46:40 +01:00
parent 958eb8c791
commit 9732e4ae16
2 changed files with 17 additions and 6 deletions

View File

@@ -29,7 +29,16 @@ return {
quotes = {
type = "text",
align = "center",
content = {[["It's not as hard as it looks..."]]},
content = function ()
local handle = io.popen("pwd")
if handle then
local cwd = handle:read("*l")
handle:close()
return {"Currently in " .. cwd}
else
return {"Error running command"}
end
end,
highlight = "String",
default_color = "#FFFFFF"
},