Skip to content

Commit b05ab9e

Browse files
committed
Merge branch 'master' into feature/path-interpolation-simple
2 parents f0a5845 + def5fd6 commit b05ab9e

File tree

9 files changed

+24
-5
lines changed

9 files changed

+24
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ about: Create a report to help us improve
44
title: ''
55
labels: bug
66
assignees: ''
7+
78
---
89

910
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ about: Suggest an idea for this project
44
title: ''
55
labels: feature-request
66
assignees: ''
7+
78
---
89

910
**Is your feature request related to a problem? Please describe.**

.github/ISSUE_TEMPLATE/other-issue.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Other issue
3+
about: Any other issue not covered by the above templates
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the issue**
11+
PLEASE CHECK THAT THE ISSUE HAS NOT ALREADY BEEN POSTED.
12+
13+
Provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

.github/ISSUE_TEMPLATE/syntax-highlighting.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ about: Create a bug report for erroneous syntax highlighting
44
title: ''
55
labels: syntax-highlight
66
assignees: ''
7+
78
---
89

910
**Describe the bug**

.github/workflows/publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
on:
2-
push:
3-
tags:
4-
- '*'
2+
release:
3+
types: [published]
54

65
name: Deploy Extension
76
jobs:

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ Two formatters are supported [`findent`](https://github.com/gnikit/findent-pypi)
144144
and [`fprettify`](https://github.com/pseewald/fprettify). Both of them can be
145145
installed with `pip` automatically through the extension.
146146

147+
findent | fprettify
148+
:-------------------------:|:-------------------------:
149+
![](./images/findent-demo.gif) | ![](./images/fprettify-demo.gif)
150+
147151
The formatter is controlled by the user option
148152

149153
```json
@@ -156,7 +160,7 @@ Additional arguments to the formatter can be input using
156160

157161
```json
158162
{
159-
"fortran.formatting.args":, ["-Cn", "-Rr"]
163+
"fortran.formatting.args":, ["-Cn", "--align-paren=1"]
160164
}
161165
```
162166

images/findent-demo.gif

487 KB
Loading

images/fprettify-demo.gif

514 KB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
},
168168
"fortran.formatting.formatter": {
169169
"type": "string",
170-
"default": "Disabled",
170+
"default": "findent",
171171
"enum": [
172172
"findent",
173173
"fprettify",

0 commit comments

Comments
 (0)