Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

環境変数PATHを共通化する。

$
0
0

Windowsで環境変数PATHを設定するのってすごく面倒なので、
VimとPowerShellとBatファイル、それぞれ共通のファイルを
読み込んでPATHを設定しようと思いました。

で、以下のコードを.vimrcMicrosoft.PowerShell_profile.ps1に書けばOK。
共通のファイルは1行ごとにPATHが書かれています。

Bat ファイル

@echooffsetlocal enabledelayedexpansion
setPATH=FOR/F%%i in (%HOME%\example.pathrc) do @setPATH=%%i;!PATH!
echo%PATH%endlocal

Vim script

if filereadable(expand('~/example.pathrc'))let $path=join(readfile(expand('~/example.pathrc')),';')endif
echo $path

PowerShell script

if(test-path"$env:HOME\example.pathrc"){$env:path=[string]::join(';',(get-content"$env:HOME\example.pathrc"))}write-host$env:path

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>