FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vim-python-docstring/python/ibis/config.py at master · pixelneo/vim-python-docstring · GitHub
pixelneo
/
vim-python-docstring
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
47
Code
Issues
5
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
vim-python-docstring
/
python
/
ibis
/
config.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (26 loc) · 868 Bytes
Breadcrumbs
vim-python-docstring
/
python
/
ibis
/
config.py
Copy path
File metadata and controls
33 lines (26 loc) · 868 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# --------------------------------------------------------------------------
# User configuration settings.
# --------------------------------------------------------------------------
import
datetime
# Assign a template-loading callable here to enable the {% include %}
# and {% extends %} tags. The callable should accept one or more string
# arguments and either return an instance of the Template class or raise
# a TemplateNotFound exception.
loader
=
None
# Token delimiters.
delimiters
=
{
'print_start'
:
'{{'
,
'print_end'
:
'}}'
,
'eprint_start'
:
'{{{'
,
'eprint_end'
:
'}}}'
,
'syntax_start'
:
'{%'
,
'syntax_end'
:
'%}'
,
'comment_start'
:
'{#'
,
'comment_end'
:
'#}'
,
}
# Builtin functions and variables available in all contexts.
builtins
=
{
'delimiters'
:
delimiters
,
'now'
:
datetime
.
datetime
.
now
,
'range'
:
range
,
}
Back
|
FazBrowse Home
|
New Git URL