Last active
May 26, 2024 19:27
-
-
Save rupeshtr78/ed42a23aec87b8463e4f04bec0308d63 to your computer and use it in GitHub Desktop.
Windows FZF history search with cmder ,clink
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- fzf clink history search | |
-- update cmder\vendor\clink >= clink -- version = 1.1.44 | |
-- install fzf choco install fzf | |
-- add the fzf_history.lua to cmder\config folder | |
-- add below key binding to _inputrc use "clink info" to find inputrc path | |
-- M-x: "luafunc:fzf_history" #Alt x | |
-- Might have to adjust your regex in line 38 39 based on your settings | |
-- reference https://chrisant996.github.io/clink/clink.html | |
settings.add("fzf.height", "40%", "Height to use for the --height flag") | |
-- settings.add("fzf.exe_location", "", "Location of fzf.exe if not on the PATH") | |
-- Build a command line to pipe history and launch fzf | |
local function get_fzf() | |
local height = settings.get("fzf.height") | |
local c = "C:\\cmder\\vendor\\clink\\clink_x64.exe" | |
local session_history = c.." --session".." clink.getsession()".. " history".." --bare" | |
local fzf_command= session_history.." | ".."fzf" | |
if height and height ~= "" then | |
fzf_command = fzf_command..' --height '..height..' --layout=reverse' | |
end | |
return fzf_command | |
end | |
local fzf_complete_intercept = false | |
function fzf_history(rl_buffer) | |
print("Searching History") | |
fzf_complete_intercept = true | |
if not fzf_complete_intercept then | |
return | |
end | |
local handle = io.popen(get_fzf()) | |
local result = handle:read("*a") | |
handle:close() | |
if fzf_complete_intercept then | |
for hist in string.gmatch(result, "(.+)$") do | |
rl_buffer:insert(hist) | |
end | |
end | |
fzf_complete_intercept = false | |
rl_buffer:refreshline() | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment