From 7173a21dfb23a8052e33f6773a5604c57e5bed43 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Thu, 29 Jun 2017 16:21:07 -0500 Subject: [PATCH] make install commands easier to highlight Long snippets are sometimes difficult to fully select in a Web browser. Hard wrapping snippets to make them easier to grab. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aae46b8..73e2068 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,12 @@ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ ```powershell md ~\vimfiles\autoload $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' -(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\autoload\plug.vim")) +(New-Object Net.WebClient).DownloadFile( + $uri, + $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath( + "~\vimfiles\autoload\plug.vim" + ) +) ``` #### Neovim @@ -58,7 +63,12 @@ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ ```powershell md ~\AppData\Local\nvim\autoload $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' -(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\AppData\Local\nvim\autoload\plug.vim")) +(New-Object Net.WebClient).DownloadFile( + $uri, + $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath( + "~\AppData\Local\nvim\autoload\plug.vim" + ) +) ``` ### Getting Help