Improve vim-motion-based line moving shortcuts
This commit is contained in:
@@ -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"
|
||||
},
|
||||
|
Reference in New Issue
Block a user