Last active
August 11, 2023 00:27
Revisions
-
romainl revised this gist
Oct 30, 2018 . 1 changed file with 22 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,25 @@ " MIT License " Copyright (c) 2017 romain Lafourcade " Permission is hereby granted, free of charge, to any person obtaining a copy " of this software and associated documentation files (the "Software"), to deal " in the Software without restriction, including without limitation the rights " to use, copy, modify, merge, publish, distribute, sublicense, and/or sell " copies of the Software, and to permit persons to whom the Software is " furnished to do so, subject to the following conditions: " The above copyright notice and this permission notice shall be included in all " copies or substantial portions of the Software. " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR " IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, " FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE " AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER " LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, " OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE " SOFTWARE. " Define a global variable containing the current environment's name " if it hasn't been already defined. if !exists('g:env') -
romainl revised this gist
Jul 23, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ " Define a global variable containing the current environment's name " if it hasn't been already defined. if !exists('g:env') if has('win64') || has('win32') || has('win16') let g:env = 'WINDOWS' else let g:env = toupper(substitute(system('uname'), '\n', '', '')) -
romainl revised this gist
Jun 17, 2017 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -27,4 +27,6 @@ endif if g:env =~ 'MINGW' " ... to do MinGW-specific stuff (Git Bash, mainly). endif " and so on... -
romainl renamed this gist
Jun 17, 2017 . 1 changed file with 9 additions and 9 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,30 +1,30 @@ " Define a global variable containing the current environment's name " if it hasn't been already defined. if !exists('g:env') if has('win32') || has('win16') let g:env = 'WINDOWS' else let g:env = toupper(substitute(system('uname'), '\n', '', '')) endif endif " Use that global variable... if g:env =~ 'DARWIN' " ... to do Mac OS X-specific stuff. endif if g:env =~ 'LINUX' " ... to do Linux-specific stuff. endif if g:env =~ 'WINDOWS' " ... to do Windows-specific stuff. endif if g:env =~ 'CYGWIN' " ... to do Cygwin-specific stuff. endif if g:env =~ 'MINGW' " ... to do MinGW-specific stuff (Git Bash, mainly). endif -
romainl revised this gist
Jun 17, 2017 . 1 changed file with 11 additions and 3 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -9,14 +9,22 @@ if !exists('g:os') endif " Use that global variable... if g:os =~ 'Darwin' " ... to do Mac OS X-specific stuff. endif if g:os =~ 'Linux' " ... to do Linux-specific stuff. endif if g:os =~ 'Windows' " ... to do Windows-specific stuff. endif if g:os =~ 'CYGWIN' " ... to do Cygwin-specific stuff. endif if g:os =~ 'MINGW' " ... to do MinGW-specific stuff (Git Bash, mainly). endif -
romainl revised this gist
Jun 10, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,7 @@ endif if g:os == 'Linux' " ... to do Linux-specific stuff. endif if g:os == 'Windows' " ... to do Windows-specific stuff. -
romainl created this gist
Jun 10, 2017 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ " Define a global variable containing the OS name " if it hasn't been already defined. if !exists('g:os') if has('win32') || has('win16') let g:os = 'Windows' else let g:os = substitute(system('uname'), '\n', '', '') endif endif " Use that global variable... if g:os == 'Darwin' " ... to do Mac OS X-specific stuff. endif if g:os == 'Linux' " ... to do Linux-specific stuff. endif if g:os == 'Windows' " ... to do Windows-specific stuff. endif