Skip to content

Commit 9a9788b

Browse files
committed
[1.3.2] new release
1 parent 70af048 commit 9a9788b

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,11 @@ typo
202202

203203
- Now search is case-insensitive (For normal search, case-sensitive is automatically enabled when you type a capital letter)
204204
- A failed search will not cause the outline running into an error state
205-
- Ignore scheme vscode-scm and workThroughSnippet
205+
- Ignore scheme vscode-scm and workThroughSnippet
206+
207+
### [1.3.2] - 2023-11-09
208+
209+
#### Fix
210+
211+
- Overlap items when the height of the outline is not enough #50
212+
- Other minor fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "outline-map",
33
"displayName": "Outline Map",
44
"description": "A visual, interactive outline map that combinesAlternative Minimap. the clarity of the outline with the intuitive overview of the minimap. Enhanced version of vscode built-in outline.",
5-
"version": "1.3.1",
5+
"version": "1.3.2",
66
"repository": {
77
"url": "https://github.com/Gerrnperl/outline-map.git"
88
},

src/extension/region.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ export class RegionProvider implements DocumentSymbolProvider, FoldingRangeProvi
179179
}
180180

181181
const startTag = unpaired[startIndex];
182+
if (!startTag) continue;
182183
unpaired.splice(startIndex, 1);
183184

184185
regions.push({

src/webview/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ function renderSymbolNode(symbolNode: SymbolNode, depth = 0): HTMLDivElement {
266266

267267
const label = container.querySelector('.outline-label') as HTMLSpanElement;
268268
label.addEventListener('click', () => {
269+
input.stopSearch();
269270
vscode.postMessage({
270271
type: 'goto',
271272
data: {

0 commit comments

Comments
 (0)