mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-02-26 05:46:00 +01:00
Updates for 0.7.1
This commit is contained in:
parent
d7bc507e2d
commit
bea7608ff1
12
build.xml
12
build.xml
@ -35,7 +35,7 @@
|
||||
<property name="project" value="IdeaVIM" />
|
||||
<!-- Update this prior to building a new distribution -->
|
||||
<property name="idea-version" value="4.x" />
|
||||
<property name="version" value="0.7.0" />
|
||||
<property name="version" value="0.7.1" />
|
||||
|
||||
<path id="build.classpath">
|
||||
<pathelement path="${idea.home}/lib/idea.jar" />
|
||||
@ -77,8 +77,8 @@
|
||||
</target>
|
||||
|
||||
<target name="deploy" depends="build" description="Copies plugin to IntelliJ plugin directory" >
|
||||
<mkdir dir="${idea.home}/plugins/IdeaVIM-${version}/lib"/>
|
||||
<copy file="${build}/${project}.jar" todir="${idea.home}/plugins/IdeaVIM-${version}/lib" />
|
||||
<mkdir dir="${idea.home}/plugins/IdeaVIM/lib"/>
|
||||
<copy file="${build}/${project}.jar" todir="${idea.home}/plugins/IdeaVIM/lib" />
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="dist-src, dist-bin" description="Creates the src and bin distribution files" />
|
||||
@ -123,9 +123,11 @@
|
||||
<filter token="IDEA-VERSION" value="${idea-version}" />
|
||||
</filterset>
|
||||
</copy>
|
||||
<mkdir dir="${dist}"/>
|
||||
<tar basedir="." destfile="${dist}/${project}-${version}-${idea-version}-bin.tar.gz" compression="gzip" includes="${project}-${version}-${idea-version}/**" />
|
||||
<zip basedir="." zipfile="${dist}/${project}-${version}-${idea-version}.zip" compress="true" includes="${project}-${version}-${idea-version}/**" />
|
||||
<move todir="${project}">
|
||||
<fileset dir="${project}-${version}-${idea-version}"/>
|
||||
</move>
|
||||
<zip basedir="." zipfile="${dist}/${project}-${version}-${idea-version}.zip" compress="true" includes="${project}/**" />
|
||||
</target>
|
||||
|
||||
<target name="dist-src" depends="clean" description="Creates the source tar file" >
|
||||
|
@ -5,6 +5,13 @@ History of changes for @NAME@ for IDEA @IDEA-VERSION@
|
||||
Bug Fixes
|
||||
- Opening a non-text file resulted in some exceptions. This could happend when
|
||||
opening an image with the ImageViewer plugin.
|
||||
- Better handling of trying to edit a VCS controlled read-only file.
|
||||
- Properly handle multiple < or > in the :> and :< commands.
|
||||
- Fix some exception and assertions when opening multiple projects.
|
||||
- Fixed cursor position problem when issuing a c<motion> command that changed
|
||||
text up to the end of line.
|
||||
- Using the C command on an empty file caused an error.
|
||||
- Changing the last word on the last line leaves cursor correctly.
|
||||
|
||||
0.6.5 to 0.7.0
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
Bugs to fix:
|
||||
|
||||
- can't delete empty lines at end of file.
|
||||
- cw on last word of file removes last word but moves cursor to start of
|
||||
previous line.
|
||||
- Show message after shifting lines with :< or :>
|
||||
- Replace mode - fix cursor. Can't figure out how to keep block cursor.
|
||||
|
||||
Requested Functionality to add:
|
||||
|
49
plugin.xml
49
plugin.xml
@ -5,47 +5,16 @@
|
||||
<vendor url="http://sourceforge.net/projects/ideavim/" email="rick@maddyhome.com">Rick Maddy</vendor>
|
||||
<change-notes>
|
||||
<![CDATA[
|
||||
New Features<br>
|
||||
- Highlighting lines of code by clicking and/or dragging in the line number area
|
||||
now leaves you in visual line mode.<br>
|
||||
- Undoing all changes in a file now correctly marks the file as unchanged if it
|
||||
hasn't been saved in the meantime.<br>
|
||||
- All the :write commands (:w :wn :wN :wq) save just the one file now. To save
|
||||
all files use the :wall command.<br>
|
||||
- Enhanced the :e command. Support for :e# and :e <filename> have been added.
|
||||
:e# selects the previous tab. :e <filename> will search the entire project
|
||||
and open the first matching file. Relative paths are supported too. :e with
|
||||
no argument will still bring up the File Open dialog.<br>
|
||||
- Added support for the gP and gp commands.<br>
|
||||
- Added support for the z+ and z^ commands.<br>
|
||||
- Added :class command to bring up "Go To Class" dialog. If followed by a
|
||||
classname, open the corresponding Java file. Not in VIM.<br>
|
||||
- Added :symbol command to bring up "Go To Symbol" dialog. Not in VIM.<br>
|
||||
- Editors use block cursor for command mode and a vertical bar for
|
||||
insert/replace mode.<br>
|
||||
- Better support for split view editing.<br>
|
||||
- Text selection is reflected in all editors of a file.<br>
|
||||
<br>
|
||||
Bug Fixes<br>
|
||||
- Under certain conditions, highlighting text left you in multiple layers of
|
||||
visual mode. This is now fixed.<br>
|
||||
- The gv command resulted in too much text being selected in many cases.<br>
|
||||
- The gv command now properly restores the cursor position.<br>
|
||||
- Fixed exception caused by using the :undo and :redo commands.<br>
|
||||
- Re-enabled all the :write related commands. Hopefully the deadlock has been
|
||||
solved.<br>
|
||||
- Fixed error referencing unknown class FileCloseAction.<br>
|
||||
- Fixed several exceptions related to edit fields in dialog boxes.<br>
|
||||
- Fixed some exceptions related to the undo manager.<br>
|
||||
- Status was not always show proper mode.<br>
|
||||
- r<Enter> now works as expected.<br>
|
||||
- Toggling between insert and replace mode wasn't working properly.<br>
|
||||
- The cursor wasn't always restored correctly after an undo.<br>
|
||||
- Yanking the last line and then putting it elsewhere sometimes resulted in the
|
||||
old and new line not having a newline between them.<br>
|
||||
- Repeating of o and O commands, including with count, works properly now.<br>
|
||||
- dw, dW, and d[w now act like d$ if deleting the last word of a line.<br>
|
||||
- cW now properly behaves like cE.<br>
|
||||
- Opening a non-text file resulted in some exceptions. This could happend when
|
||||
opening an image with the ImageViewer plugin.<br>
|
||||
- Better handling of trying to edit a VCS controlled read-only file.<br>
|
||||
- Properly handle multiple < or > in the :> and :< commands.<br>
|
||||
- Fix some exception and assertions when opening multiple projects.<br>
|
||||
- Fixed cursor position problem when issuing a c<motion> command that changed
|
||||
text up to the end of line.<br>
|
||||
- Using the C command on an empty file caused an error.<br>
|
||||
- Changing the last word on the last line leaves cursor correctly.<br>
|
||||
]]>
|
||||
</change-notes>
|
||||
<idea-version min="4.0" max="4.5"/>
|
||||
|
Loading…
Reference in New Issue
Block a user