view runtime/indent/chatito.vim @ 31041:ce04a773d598 v9.0.0855

patch 9.0.0855: comment not located above the code it refers to Commit: https://github.com/vim/vim/commit/09a93e3e66689c691a00fce25e4ce310d81edaee Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Nov 10 17:05:28 2022 +0000 patch 9.0.0855: comment not located above the code it refers to Problem: Comment not located above the code it refers to. Solution: Move the comment. (closes https://github.com/vim/vim/issues/11527)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Nov 2022 18:15:04 +0100
parents 1e91e26ceebf
children
line wrap: on
line source

" Vim indent file
" Language:	Chatito
" Maintainer:	ObserverOfTime <chronobserver@disroot.org>
" Last Change:	2022 Sep 20

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

setlocal indentexpr=GetChatitoIndent()
setlocal indentkeys=o,O,*<Return>,0#,!^F

let b:undo_indent = 'setl inde< indk<'

if exists('*GetChatitoIndent')
    finish
endif

function GetChatitoIndent()
    let l:prev = v:lnum - 1
    if getline(prevnonblank(l:prev)) =~# '^[~%@]\['
        " shift indent after definitions
        return shiftwidth()
    elseif getline(l:prev) !~# '^\s*$'
        " maintain indent in sentences
        return indent(l:prev)
    else
        " reset indent after a blank line
        return 0
    end
endfunction