As answers to this Stack Overflow question
reveal, using <!--- and ---> or <!-- and --> works (view source by clicking "Raw"):
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
| let g:polyglot_disabled = ['markdown'] | |
| call plug#begin() | |
| " NERDTree | |
| Plug 'scrooloose/nerdtree' | |
| " Git integration | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'airblade/vim-gitgutter' |
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
| REM Replaces notepad.exe with notepad++. Here for reference since I can never find it | |
| REM Taken from here: http://blogs.itramblings.com/post/2009/02/08/How-to-replace-notepadexe-on-Windows-Server-2008.aspx | |
| @echo off | |
| echo Create Backup copies of the original notepad.exe | |
| copy C:\Windows\notepad.exe C:\Windows\notepad32.exe | |
| copy C:\Windows\System32\notepad.exe C:\Windows\System32\notepad32.exe | |
| copy C:\Windows\SysWOW64\notepad.exe C:\Windows\SysWOW64\notepad32.exe | |