1.1.0 Added dotfiles from my old PC

This commit is contained in:
2020-10-02 22:43:43 +02:00
parent 1d0d2bdd53
commit 49f2ea379d
102 changed files with 10692 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
VERSION = "2.0.0"
MakeCommand("fzf", "fzf.fzf", 0)
function fzf()
if CurView():CanClose() then
RunTermEmulator("fzf", false, true, "fzf.handleFzfOutput")
end
end
function handleFzfOutput(output)
local strings = import("strings")
CurView():Open(strings.TrimSpace(output))
end
AddRuntimeFile("fzf", "help", "help/fzf.md")