Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blueprint friendly and some fixes #21

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode/
vsc-*
.DS_Store/
flask-snippets-*
flask-snippets-*
.vsixmanifest
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ Thanks!
| ftitle | Flask title |
| fvar | Flask var |
| fcontent | Flask content |
| fsurl | Flask static url |
| fwith | Flask with |

## Release Notes

Expand Down
4 changes: 2 additions & 2 deletions snippets/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"Flask route": {
"prefix": "route",
"body": [
"@app.route('/${1:route_name}')",
"def ${2:method_name}():",
"@${1:app}.route('/${2:route_name}')",
"def ${3:method_name}():",
" pass$0"
]
},
Expand Down
2 changes: 1 addition & 1 deletion snippets/controls.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"Flask route": {
"prefix": "froute",
"body": "@app.route('${1:path}')\ndef ${2:func_name}(${3:foo}):\n return render_template('${4:expression}')$0"
"body": "@${1:app}.route('${2:path}')\ndef ${3:func_name}(${4:foo}):\n return render_template('${5:expression}')$0"
},
"URL generator": {
"prefix": "furl",
Expand Down
20 changes: 16 additions & 4 deletions snippets/templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"Flask block": {
"prefix": "fblock",
"body": "{% ${1:block} ${2:foo} %}$3{% end${1:block} %}\n$0"
"body": "{% block ${1:foo} %}$2{% endblock ${1:foo} %}$0"
},
"Flask extends": {
"prefix": "fextends",
Expand Down Expand Up @@ -57,11 +57,11 @@
},
"Flask include": {
"prefix": "finclude",
"body": "{% include \"${1:template}\" %}$0"
"body": "{% include '${1:template}' %}$0"
},
"Flask import": {
"prefix": "fimport",
"body": "{% import \"${1:template}\" as ${2:alias} %}\n$0"
"body": "{% import '${1:template}' as ${2:alias} %}\n$0"
},
"Flask from import": {
"prefix": "ffrom",
Expand All @@ -74,7 +74,11 @@
},
"Flask url": {
"prefix": "furl",
"body": "{{ url_for(\"${1:template}\") }}$0"
"body": "{{ url_for('${1:template}') }}$0"
},
"Flask static url": {
"prefix": "fsurl",
"body": "{{ url_for('static', filename='${1:css/file.css}') }}$0"
},
"Flask title": {
"prefix": "ftitle",
Expand All @@ -87,5 +91,13 @@
"Flask content block": {
"prefix": "fcontent",
"body": "{% block content %}\n\t${1:Some content}\n{% endblock %}"
},
"Flask with": {
"prefix": "fwith",
"body": "{% with ${1:foo}=${2:'42'} %}\n\t${3:foo}\n{% endwith %}$0"
},
"Flask indent": {
"prefix": "findent",
"body": "{% filter indent(${1:4}) -%} ${2:} {%- endfilter %}$0"
}
}