~ubuntu-branches/ubuntu/maverick/bpython/maverick

« back to all changes in this revision

Viewing changes to sample.ini

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2009-09-03 13:12:23 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090903131223-0gvim28x4yuhqvog
Tags: 0.9.4-1
* New upstream version
* debian/rules, debian/control:
  - adding quilt infrastructure (>= 0.46-7~ for dh7 integration)
* debian/patches/:
  - 01-fix_python_history_file.patch added, thanks to Philipp Winter
    (Closes: #537504)
* debian/control:
  - only support python2.5 at the moment (setuptools import fails on
    py2.6, thus FTBFS)
  - Standards-Version bump to 3.8.3, no changes needed
* debian/examples updated, sample file has been renamed
* debian/README.source added

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
# This is a standard python .ini file
3
 
# Valid values can be True, False, integer numbers, strings
4
 
# By default bpython will look for ~/.bpython.ini or you can specify a file as
5
 
# the first argument on the command line
6
 
 
7
 
# General section tag
8
 
[general]
9
 
 
10
 
# Display the autocomplete list as you type (default: True).
11
 
# When this is off, you can hit tab to see the suggestions.
12
 
auto_display_list = True
13
 
 
14
 
# Syntax highlighting as you type (default: True).
15
 
syntax = True
16
 
 
17
 
# Display the arg spec (list of arguments) for callables,
18
 
# when possible (default: True).
19
 
arg_spec = True
20
 
 
21
 
# History file (default: ~/.pythonhist):
22
 
hist_file = ~/.pythonhist
23
 
 
24
 
# Number of lines to store in history (set to 0 to disable) (default: 100):
25
 
hist_len = 100
26
 
 
27
 
# Soft tab size (default: 4, see pep-8):
28
 
tab_length = 4
29
 
 
30
 
# Color schemes should be put in ~/.bpython/
31
 
# e.g. to use the theme ~/.bpython/foo.theme set color_scheme = foo
32
 
# Leave blank or set to "default" to use the default theme
33
 
color_scheme = default
34
 
 
35
 
[keyboard]
36
 
pastebin = F8
37
 
save = C-s