diff options
author | Indrajith K L | 2022-12-03 17:00:20 +0530 |
---|---|---|
committer | Indrajith K L | 2022-12-03 17:00:20 +0530 |
commit | f5c4671bfbad96bf346bd7e9a21fc4317b4959df (patch) | |
tree | 2764fc62da58f2ba8da7ed341643fc359873142f /ff.cfg | |
download | cli-tools-windows-f5c4671bfbad96bf346bd7e9a21fc4317b4959df.tar.gz cli-tools-windows-f5c4671bfbad96bf346bd7e9a21fc4317b4959df.tar.bz2 cli-tools-windows-f5c4671bfbad96bf346bd7e9a21fc4317b4959df.zip |
Diffstat (limited to 'ff.cfg')
-rw-r--r-- | ff.cfg | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -0,0 +1,47 @@ +[directories] +a = "$USERPROFILE/AppData" +d = "$USERPROFILE/Desktop" +o = "$USERPROFILE/Documents" +r = "$HOMEDRIVE/" +u = "$USERPROFILE" +w = "$USERPROFILE/Downloads" +x = "$HOMEDRIVE/Dropbox" + +[actions] +1.name = "Open selected file in Scite" +1.select = "file" +1.action = "sc1" + +7.name = "Open selected file in 7enc" +7.select = "file" +7.action = "7enc" + +c.name = "Open Console window in selected directory" +c.select = "dir" +c.action = "cmd /k cd" + +e.name = "Open ConEmu cmd shell in selected directory" +e.select = "dir" +e.action = "ConEmu.exe -dir {} -single -run {cmd} -cur_console" + +g.name = "Open selection in GUI Vim" +g.action = "gvim" + +t.name = "Kill selected process by PID" +t.select = "tasklist /nh" +t.action = "/MIN cmd /c for /f \"tokens=2\" %f in ({}) do taskkill /f /pixd %f" + +T.name = "Kill process(es) by Name" +T.select = "tasklist /nh" +T.action = "/MIN cmd /c for /f \"tokens=1\" %f in ({}) do taskkill /f /im %f" + +v.name = "Open selection in console Vim" +v.action = "vim" + +z.name = "Open selected file in 7-Zip" +z.select = "*.zip" +z.action = "\"c:/Program Files/7-Zip/7zFM.exe\"" + +k.name = "Open Selected file in VSCode" +k.select = "file" +k.action = "code" |