Mercurial > vim
view runtime/indent/readline.vim @ 15627:11879b89bb69 v8.1.0821
patch 8.1.0821: xxd "usage" output and other arguments not tested
commit https://github.com/vim/vim/commit/970f5d39f27717b1a529b7b250a8ed7c3f791949
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 25 21:52:17 2019 +0100
patch 8.1.0821: xxd "usage" output and other arguments not tested
Problem: Xxd "usage" output and other arguments not tested.
Solution: Add a test to trigger the usage output in various ways. Fix
uncovered problem.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 25 Jan 2019 22:00:15 +0100 |
parents | d0a20101ecb2 |
children | 9c221ad9634a |
line wrap: on
line source
" Vim indent file " Language: readline configuration file " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2006-12-20 if exists("b:did_indent") finish endif let b:did_indent = 1 setlocal indentexpr=GetReadlineIndent() setlocal indentkeys=!^F,o,O,=$else,=$endif setlocal nosmartindent if exists("*GetReadlineIndent") finish endif function GetReadlineIndent() let lnum = prevnonblank(v:lnum - 1) if lnum == 0 return 0 endif let ind = indent(lnum) if getline(lnum) =~ '^\s*$\(if\|else\)\>' let ind = ind + shiftwidth() endif if getline(v:lnum) =~ '^\s*$\(else\|endif\)\>' let ind = ind - shiftwidth() endif return ind endfunction