Hello,
my Vim 7.2.293 reproducibly crashes while editing the attached XML file
crash.xml. You probably need the attached .vimrc-crash to reproduce it:
1. Start vim -u .vimrc-crash crash.xml
2. 98gg (Start of comment)
3. o (Open line below)
4. Press Esc
5. Move Cursor to end of comment line (initially 101)
6. o (Open line below)
7. Press Esc
You need to repeat steps 2 to 7 several times (creating empty lines
after comment start and end) but for me it crashes reliably after a few
repetitions.
Can others reproduce this? What can I do to further diagnose the problem?
Regards,
Dennis Benzinger
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>com.atlassian.jira.plugins</groupId>
<artifactId>jira-plugin-base</artifactId>
<version>13</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId></groupId>
<artifactId></artifactId>
<version>1.0-SNAPSHOT</version>
<name></name>
<description></description>
<url></url>
<packaging>atlassian-plugin</packaging>
<properties>
<atlassian.plugin.key></atlassian.plugin.key>
<!-- JIRA version -->
<atlassian.product.version>4.0</atlassian.product.version>
<!-- JIRA functional test library version -->
<atlassian.product.test-lib.version>4.0</atlassian.product.test-lib.version>
<!-- JIRA data version -->
<atlassian.product.data.version>4.0</atlassian.product.data.version>
</properties>
<!-- TODO: Complete developer details -->
<!--
<developers>
<developer>
<name>John Smith</name>
<organization>Example Company</organization>
</developer>
</developers>
-->
<!-- TODO: Complete source control details -->
<!--
<scm>
<connection></connection>
<developerConnection></developerConnection>
<url></url>
</scm>
-->
<dependencies>
<dependency>
<groupId>net.fortuna</groupId>
<artifactId>ical4j</artifactId>
<version>1.0-beta4</version>
</dependency>
<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
<version>2.9.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!--You can define Ant tasks to be executed before and/or after integration tests --><!--
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>pre-integration-test-user-ant-tasks</id>
<configuration>
<tasks>
<echo message="Ant task before integration tests."/>
</tasks>
</configuration>
</execution>
<execution>
<id>post-integration-test-user-ant-tasks</id>
<configuration>
<tasks>
<echo message="Ant task _after_ integration tests."/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>-->
<build>
<plugins>
<!--
http://forums.atlassian.com/thread.jspa?messageID=257309817
http://stackoverflow.com/questions/1397903/setting-project-for-eclipse-using-maven
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.6</version>
<configuration>
<additionalProjectnatures>
<projectnature>net.sourceforge.pmd.eclipse.plugin.pmdNature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>net.sourceforge.pmd.eclipse.plugin.pmdBuilder</buildcommand>
</additionalBuildcommands>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src-gen/main/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
filetype plugin indent on
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set noshiftround
set expandtab
set showtabline=2
set number
set ruler
set showcmd
set laststatus=2
set ignorecase
set wrap
set linebreak
set scrolloff=1
set sidescroll=10
set wildmode=list:longest
set switchbuf=usetab
if v:version >= 702
set switchbuf+=newtab
endif
set noequalalways
set whichwrap=b,s,<,>,[,]
set backspace=indent,eol,start
set virtualedit=block
set nojoinspaces
set visualbell
set spellsuggest+=20
syntax enable