We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595f6be commit ba8385eCopy full SHA for ba8385e
sample.ini
@@ -0,0 +1,27 @@
1
+
2
+# This is a standard python .ini file
3
+# Valid values can be True, False, integer numbers, quoted strings
4
5
+# General section tag
6
+[general]
7
8
+# Display the autocomplete list as you type (default: True).
9
+# When this is off, you can hit tab to see the suggestions.
10
+auto_display_list = True
11
12
+# Syntax highlighting as you type (default: True).
13
+syntax = True
14
15
+# Display the arg spec (list of arguments) for callables,
16
+# when possible (default: True).
17
+arg_spec = True
18
19
+# History file:
20
+hist_file = "~/.pythonhist"
21
22
+# Number of lines to store in history (set to 0 to disable):
23
+hist_len = 100
24
25
+# Soft tab size:
26
+tab_length = 4
27
0 commit comments