Mercurial > vim
view src/testdir/test_argument_0count.in @ 7500:ef568437e49a v7.4.1052
commit https://github.com/vim/vim/commit/04bff88df6211f64731bf8f5afa088e94496db16
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 5 20:46:16 2016 +0100
patch 7.4.1052
Problem: Illegal memory access with weird syntax command. (Dominique Pelle)
Solution: Check for column past end of line.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 05 Jan 2016 21:00:05 +0100 |
parents | a03e143b9358 |
children |
line wrap: on
line source
Tests for :0argadd and :0argedit vim: set ft=vim : STARTTEST :so small.vim :let arglists = [] :%argd :arga a b c d :2argu :0arga added :call add(arglists, argv()) :2argu :arga third :call add(arglists, argv()) :%argd :arga a b c d :2argu :0arge edited :call add(arglists, argv()) :2argu :arga third :call add(arglists, argv()) :e! test.out :call append(0, map(copy(arglists), 'join(v:val, " ")')) :w :qa! ENDTEST