X Tutup
Skip to content

Commit 7dfb83c

Browse files
committed
never edited a manpage before, let's hope it works
1 parent e7a5c34 commit 7dfb83c

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

doc/bpython.1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
bpython \- a fancy curses interface to the Python interactive interpreter
2020
.SH SYNOPSIS
2121
.B bpython
22-
.I rc\-file
22+
.I ini file
2323
.SH DESCRIPTION
2424
The idea is to provide the user with all the features
2525
in\-line, much like modern IDEs, but in a simple,
@@ -44,7 +44,7 @@ This is a bit misleading, but it code that has been entered is remembered, and w
4444
.RE
4545
.B * Pastebin code/write to file.
4646
.RS
47-
This posts the current buffer to a pastebin (rafb.net/paste for now) or writes it to a file.
47+
This posts the current buffer to a pastebin (paste.pocoo.org) or writes it to a file.
4848
.RE
4949
.B * Flush curses screen to stdout.
5050
.RS
@@ -73,7 +73,7 @@ Saves the current buffer to a file.
7373
Pastebin
7474
.RS
7575
Posts the current buffer to
76-
.B http://rafb.net/paste
76+
.B http://paste.pocoo.org/
7777
(will probably become configurable), and displays the URL.
7878
.RE
7979
.B <Tab>
@@ -83,15 +83,15 @@ If there's an unambigious completion of the expression, fill it in.
8383
.RE
8484

8585
.SH FILES
86-
~/.bpythonrc
86+
~/.bpython.ini
8787
.RS
88-
Your bpython config. See sample-rc (in /usr/share/docs/bpython/examples on Debian) for various options you can use, or read
89-
.BR bpythonrc (5)
88+
Your bpython config. See sample.ini (in /usr/share/docs/bpython/examples on Debian) for various options you can use, or read
89+
.BR bpython.ini (5)
9090
.
9191
.RE
9292

9393
.SH SEE ALSO
94-
.BR bpythonrc (5),
94+
.BR bpython.ini (5),
9595
.BR python (1).
9696

9797
.SH KNOWN BUGS

doc/bpythonrc.5 renamed to doc/bpython.ini.5

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\" First parameter, NAME, should be all caps
33
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
44
.\" other parameters are allowed: see man(7), man(1)
5-
.TH BPYTHONRC 5 "August 13, 2008"
5+
.TH BPYTHON.INI 5 "August 13, 2008"
66
.\" Please adjust this date whenever revising the manpage.
77
.\"
88
.\" Some roff macros, for reference:
@@ -16,41 +16,38 @@
1616
.\" .sp <n> insert n+1 empty lines
1717
.\" for manpage-specific macros, see man(7)
1818
.SH NAME
19-
bpythonrc \- user configuration file for bpython
19+
bpython.ini \- user configuration file for bpython
2020
.SH SYNOPSIS
21-
.B ~/.bpythonrc
21+
.B ~/.bpython.ini
2222
.SH DESCRIPTION
2323
The
24-
.B bpythonrc
24+
.B bpython.ini
2525
contains various options controlling the behaviour of
2626
.B bpython
2727
.
2828

2929
Boolean values are
30-
.B yes, true, on
31-
and
32-
.B no, false, off
33-
. Currently only boolean variables exist.
30+
.B True, False
3431

3532
The various options are:
3633

3734
.B auto_display_list
3835
.BI boolean
39-
(default: yes)
36+
(default: True)
4037
.RS
4138
Display the autocomplete list as you type. When this is off, you can hit tab to see the suggestions.
4239
.RE
4340

4441
.B syntax
4542
.BI boolean
46-
(default: yes)
43+
(default: True)
4744
.RS
4845
Syntax highlighting as you type.
4946
.RE
5047

5148
.B arg_spec
5249
.BI boolean
53-
(default: yes)
50+
(default: True)
5451
.RS
5552
Display the arg spec (list of arguments) for callables, when possible.
5653
.RE

0 commit comments

Comments
 (0)
X Tutup