Mercurial > vim
view runtime/indent/yacc.vim @ 10684:83a36d655a74 v8.0.0232
patch 8.0.0232: paste does not work when 'esckeys' is off
commit https://github.com/vim/vim/commit/48c9f3b123364f368472564a66a9b71dc383558b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 24 19:08:15 2017 +0100
patch 8.0.0232: paste does not work when 'esckeys' is off
Problem: Pasting in Insert mode does not work when bracketed paste is used
and 'esckeys' is off.
Solution: When 'esckeys' is off disable bracketed paste in Insert mode.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 24 Jan 2017 19:15:04 +0100 |
parents | 35a1d7bd6191 |
children | 1218c5353e2b |
line wrap: on
line source
" Vim indent file " Language: YACC input file " Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2006-12-20 " Only load this indent file when no other was loaded. if exists("b:did_indent") finish endif let b:did_indent = 1 setlocal indentexpr=GetYaccIndent() setlocal indentkeys=!^F,o,O setlocal nosmartindent " Only define the function once. if exists("*GetYaccIndent") finish endif function GetYaccIndent() if v:lnum == 1 return 0 endif let ind = indent(v:lnum - 1) let line = getline(v:lnum - 1) if line == '' let ind = 0 elseif line =~ '^\w\+\s*:' let ind = ind + matchend(line, '^\w\+\s*') elseif line =~ '^\s*;' let ind = 0 else let ind = indent(v:lnum) endif return ind endfunction