forked from bpython/bpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.ini
More file actions
29 lines (20 loc) · 736 Bytes
/
sample.ini
File metadata and controls
29 lines (20 loc) · 736 Bytes
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
# This is a standard python .ini file
# Valid values can be True, False, integer numbers, quoted strings
# By default bpython will look for ~/.bpython.ini or you can specify a file as
# the first argument on the command line
# General section tag
[general]
# Display the autocomplete list as you type (default: True).
# When this is off, you can hit tab to see the suggestions.
auto_display_list = True
# Syntax highlighting as you type (default: True).
syntax = True
# Display the arg spec (list of arguments) for callables,
# when possible (default: True).
arg_spec = True
# History file:
hist_file = "~/.pythonhist"
# Number of lines to store in history (set to 0 to disable):
hist_len = 100
# Soft tab size:
tab_length = 4