You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added support for saving the collapsed status of the TOC view in the settings of the extension. When navigating to different ORCA output files, the TOC view status for each file will be restored.
- Added support for automatically showing TOC view when opening an ORCA output file. (bug fix)
- Added instruction screenshots to this README.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,3 +48,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
48
48
## [0.2.4] - 2023-10-28
49
49
50
50
- Update of `keywords.json` file
51
+
52
+
## [0.3.0] - 2023-11-18
53
+
54
+
- Added support for saving the collapsed status of the TOC view in the settings of the extension. When navigating to different ORCA output files, the TOC view status for each file will be restored.
55
+
- Added support for automatically showing TOC view when opening an ORCA output file. (bug fix)
Copy file name to clipboardExpand all lines: README.md
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,23 @@ This an extension for Visual Studio Code that provides a separate toggleable TOC
13
13
14
14
This extension provides a separate toggleable TOC view in the sidebar. The TOC view is automatically populated with the contents of the ORCA output file that is currently open in the editor. The TOC view is generated by parsing the ORCA output file using regular expressions and setting up a tree view based on the results. The generated TOC view is a tree view with the titles of the headings in the ORCA output file and the corresponding line numbers. Clicking on a TOC entry will jump to the corresponding line in the ORCA output file.
15
15
16
+

17
+
18
+

19
+
16
20
The TOC view can be toggled on and off by clicking on the `ORCA FILE OUTLINE` icon in the sidebar. The TOC view can also be toggled on by running the command `Show ORCA Outline` from the command palette. On Windows, the command palette can be opened with `Ctrl+Shift+P`, on Mac it is `Cmd+Shift+P`. The TOC view is automatically updated when navigating to a different ORCA output file.
The current version (0.2.4) of this extension does not have any settings.
30
+
The current version (0.3.0) enables changing the default status of the toggleable TOC view. The default collapsed status of the TOC view can be changed in the settings of the extension. The default value is `true`, which means that the TOC view is collapsed by default. The TOC view can be expanded by clicking on the `ORCA FILE OUTLINE` icon in the sidebar.
31
+
32
+

25
33
26
34
## Issues and Important Notes
27
35
@@ -41,17 +49,19 @@ The current version (0.2.4) of this extension does not have any settings.
41
49
42
50
For detailed release notes, please see [CHANGELOG.md](CHANGELOG.md).
43
51
44
-
### 0.2.4
52
+
### 0.3.0
45
53
46
-
Bug fixes and optimizations.
54
+
- Added support for saving the collapsed status of the TOC view in the settings of the extension. When navigating to different ORCA output files, the TOC view status for each file will be restored.
55
+
- Added support for automatically showing TOC view when opening an ORCA output file. (bug fix)
56
+
- Added instruction screenshots to this README.
47
57
48
58
## TODO
49
59
50
-
-[x] Automatically show TOC view when opening an ORCA output file
51
-
-[X] Support for large ORCA output files (>50MB).
52
-
-[ ] Add illustrations to this README
53
-
-[x] Add icon to this extension
54
-
-[x] Updating the list of regular expressions used to parse the ORCA output file
60
+
-[ ] Highlight the corresponding TOC entry when the user is navigating through the ORCA output file based on the current line number.
61
+
-[ ] Foldings feature for the ORCA output file based on the TOC entries.
62
+
-[ ] Add support for the `ORCA FILE OUTLINE` view to automatically scroll to the current line in the ORCA output file.
63
+
-[ ] Formatter for the ORCA output file based on the TOC entries.
0 commit comments