neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

ps1.vim (410B)


      1 " Vim indent file
      2 " Language:    Windows PowerShell
      3 " URL:         https://github.com/PProvost/vim-ps1
      4 " Last Change: 2017 Oct 19
      5 
      6 " Only load this indent file when no other was loaded.
      7 if exists("b:did_indent")
      8 finish
      9 endif
     10 let b:did_indent = 1
     11 
     12 " smartindent is good enough for powershell
     13 setlocal smartindent
     14 " disable the indent removal for # marks
     15 inoremap <buffer> # X#
     16 
     17 let b:undo_indent = "setl si<"