From e6bd7843a9d2427184c5c046cb8984ff198dc0d2 Mon Sep 17 00:00:00 2001 From: Lukasz Stafiniak Date: Mon, 13 Feb 2023 22:16:29 +0100 Subject: [PATCH] Preparing for release v1.2.1. --- CHANGELOG.md | 14 ++++++++++++++ README.md | 5 +++++ src/test/suite/extension.test.ts | 6 +++--- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2582f7..9ed0716 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [1.2.1] -- 2023-02-13 + +### Added + +- OCaml array delimiters in Raw Brackets defaults. + +### Changed + +- `goToPreviousEmptyLine` / `goToNextEmptyLine` moves to the beginning / end of document if there are no empty lines to stop at, instead of doing nothing. + +### Fixed + +- Mixing tabs and spaces is verified to work. + ## [1.2.0] -- 2023-01-31 ### Fixed diff --git a/README.md b/README.md index c309c09..b473fa9 100644 --- a/README.md +++ b/README.md @@ -201,4 +201,9 @@ Initial release of Navi Parens. * Bug fix in multicharacter delimiters handling. * Improved interaction of indentation scopes and brackets scopes: when a brackets scope is intersected by the endpoint of an indentation scope, use the brackets scope for the target position. +### 1.2.1 + +* Clears out pending issues. +* Includes OCaml array delimiters in defaults. + [changelog]: https://marketplace.visualstudio.com/items/lukstafi.navi-parens/changelog \ No newline at end of file diff --git a/src/test/suite/extension.test.ts b/src/test/suite/extension.test.ts index 964e431..bead700 100644 --- a/src/test/suite/extension.test.ts +++ b/src/test/suite/extension.test.ts @@ -32,7 +32,7 @@ function getAnnotatedContent(textEditor: vscode.TextEditor, sourcePos: vscode.Po return content; } -const isDebugSession = true; +const isDebugSession = false; function testCase(content: string, command: string, mode: string, language: string, debugThis?: boolean | undefined) { if ((isDebugSession && !debugThis) || (!isDebugSession && debugThis)) { return; } @@ -1304,14 +1304,14 @@ word2 `^paragraph paragraph@ `, - 'goToPreviousEmptyLine', mode, 'text', true + 'goToPreviousEmptyLine', mode, 'text' )); test('Tricky paragraph navigation: end of document', testCase( ` @paragraph paragraph paragraph^`, - 'goToNextEmptyLine', mode, 'text', true + 'goToNextEmptyLine', mode, 'text' )); } });