diff --git a/config/vis/visrc.lua b/config/vis/visrc.lua index 4778be5..4101cfe 100644 --- a/config/vis/visrc.lua +++ b/config/vis/visrc.lua @@ -62,7 +62,7 @@ end) -- Fuzzy search lines to copy them vis:map(vis.modes.NORMAL, ";r", function() - local choice = io.popen('sk --tac < ' .. vis.win.file.path):read() + local choice = io.popen('sk < ' .. vis.win.file.path):read() if choice then local line = vis.win.selection.line table.insert(vis.win.file.lines, line + 1, choice)