1
0
mirror of https://github.com/skywind3000/z.lua synced 2026-03-19 06:09:48 +00:00

version 1.1.0, supports fzf by z -I xxx

This commit is contained in:
skywind3000
2019-02-02 15:25:35 +08:00
parent 8f8efb9d31
commit ab848bd9ca
3 changed files with 148 additions and 48 deletions

8
z.cmd
View File

@@ -54,12 +54,18 @@ if /i "%1"=="-x" (
goto parse
)
if /i "%1"=="-i" (
if "%1"=="-i" (
set "InterMode=-i"
shift /1
goto parse
)
if "%1"=="-I" (
set "InterMode=-I"
shift /1
goto parse
)
if /i "%1"=="-s" (
set "StripMode=-s"
shift /1