Created
April 3, 2018 05:52
-
-
Save masaru-b-cl/a2c88996acfb4ff464204c33a61c7a89 to your computer and use it in GitHub Desktop.
pvim (ルートディレクトリ) で指定したディレクトリ配下のファイルをpecoで絞り込んでgvimで開くbatファイル
This file contains hidden or 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
@echo off | |
set ROOT_DIR=. | |
if "%1" neq "" ( | |
set ROOT_DIR=%1 | |
if "%1" equ "~" ( | |
set ROOT_DIR=%USERPROFILE% | |
) | |
) | |
for /f %%i in ('"dir %ROOT_DIR% /s /b" ^| peco') do ( | |
gvim %%i | |
break | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment