diff --git a/README.md b/README.md index fb50c5a..1ff645b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Notepad++ plugin to provide better cursor movements when using multiple selections. -**Note:** This is still in early development. It has not been tested with non-US keyboard layouts. This does have some minor quirks (such as the cursor not always blinking correctly) that are a side effect of the implementation. +**Note:** It has may not be fully supported on non-US keyboard layouts. This does have some minor quirks (such as the cursor not always blinking correctly) that are a side effect of the implementation. ![Demo](/img/Demo.gif) @@ -17,14 +17,17 @@ Make multiple or rectangular selections and move the cursor. Supported cursor mo - End - Word Left (`Ctrl+Left`) - Word Right (`Ctrl+Right`) +- Delete Word Left (`Ctrl+Backspace`) +- Delete Word Right (`Ctrl+Delete`) +- Enter -You can also hold down `Shift` to extend the selections, or press `Enter` to insert new lines. +You can also hold down `Shift` to extend the selections. ## Installation -Install the plugin by downloading it from the [Release](https://github.com/dail8859/BetterMultiSelection/releases) page and copy `BetterMultiSelection.dll` to your `plugins` folder. +Install the plugin by the Plugin Manager, or manually by downloading it from the [Release](https://github.com/dail8859/BetterMultiSelection/releases) page and copy `BetterMultiSelection.dll` to your `plugins` folder. ## Development -The code has been developed using MSVC 2015. Building the code will generate the DLL which can be used by Notepad++. For convenience, MSVC copies the DLL into the Notepad++ plugin directory. +The code has been developed using Visual Studio 2015. Building the code will generate the DLL which can be used by Notepad++. For convenience, Visual Studio copies the DLL into the Notepad++ plugin directory. ## License This code is released under the [GNU General Public License version 2](http://www.gnu.org/licenses/gpl-2.0.txt). diff --git a/appveyor.yml b/appveyor.yml index cc4bc4c..eddd8e4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 1.1.0.{build} +version: 1.2.0.{build} image: Visual Studio 2015 platform: diff --git a/src/Version.h b/src/Version.h index ec4c5df..fc94761 100644 --- a/src/Version.h +++ b/src/Version.h @@ -16,8 +16,8 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -#define VERSION_NUM 1,1,0,0 -#define VERSION_LINEAR 1100 -#define VERSION_LINEAR_TEXT TEXT("1100") -#define VERSION_TEXT TEXT("1.1") // This must match the tag pushed on the server minus the "v" +#define VERSION_NUM 1,2,0,0 +#define VERSION_LINEAR 1200 +#define VERSION_LINEAR_TEXT TEXT("1200") +#define VERSION_TEXT TEXT("1.2") // This must match the tag pushed on the server minus the "v" #define VERSION_STAGE TEXT("") // "alpha", "beta", ""