view runtime/indent/sshconfig.vim @ 29710:0edbf9b01c42 v9.0.0195

patch 9.0.0195: metafun files are not recogized Commit: https://github.com/vim/vim/commit/9032b9ceb6073288d75386dbcbd9d1982fa24080 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 12 21:57:13 2022 +0100 patch 9.0.0195: metafun files are not recogized Problem: Metafun files are not recogized. Solution: Add filetype detection patterns.
author Bram Moolenaar <Bram@vim.org>
date Fri, 12 Aug 2022 23:00:04 +0200
parents 74e3316c1d5a
children
line wrap: on
line source

" Vim indent file
" Language: ssh config file
" Maintainer: JasonKim <git@jasonk.me>
" Last Change: 2020 May 16

if exists("b:did_indent")
  finish
endif
let b:did_indent = 1

setlocal autoindent
setlocal indentexpr=GetSshconfigIndent(v:lnum)
setlocal indentkeys=o,O,*<Return>,0=~host\ ,0=~match\ ,0#,!^F

let b:undo_indent = "setlocal autoindent< indentexpr< indentkeys<"

if exists("*GetSshconfigIndent")
  finish
endif

function GetSshconfigIndent(lnum)
  let sw = shiftwidth()
  let prev_lnum = prevnonblank(a:lnum - 1)
  let curr_lnum = a:lnum
  let prev_line = getline(prev_lnum)
  let curr_line = getline(curr_lnum)
  if curr_line =~? '^\s*\(host\|match\)\s'
    return 0
  elseif prev_line =~? '^\s*\(host\|match\)\s'
    return sw
  else
    return indent(prev_lnum)
  endif
endfunction