Tweaking the documentation. Mainly putting prevword and nextword in
the standard order, and giving the Savannah URL for bug reporting. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5344 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
052ad10d11
commit
24d6b7fcf7
|
@ -2,7 +2,8 @@
|
||||||
* src/nano.c (main), src/files.c (read_file), src/rcfile.c,
|
* src/nano.c (main), src/files.c (read_file), src/rcfile.c,
|
||||||
doc/man/nano.1, doc/man/nanorc.5, doc/texinfo/nano.texi: Add
|
doc/man/nano.1, doc/man/nanorc.5, doc/texinfo/nano.texi: Add
|
||||||
the option --unix, to save a file by default in Unix format.
|
the option --unix, to save a file by default in Unix format.
|
||||||
* doc/nanorc.sample.in: Advertise the new bindable functions.
|
* doc/nanorc.sample.in: Advertise the five new bindable functions.
|
||||||
|
* doc/man/nano.1, doc/man/nanorc.5, doc/texinfo/nano.texi: Tweaks.
|
||||||
|
|
||||||
2015-08-03 Benno Schulenberg <bensberg@justemail.net>
|
2015-08-03 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/rcfile.c (parse_binding): Check the value of shortcut->toggle
|
* src/rcfile.c (parse_binding): Check the value of shortcut->toggle
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
.\" Documentation License along with this program. If not, see
|
.\" Documentation License along with this program. If not, see
|
||||||
.\" <http://www.gnu.org/licenses/>.
|
.\" <http://www.gnu.org/licenses/>.
|
||||||
.\"
|
.\"
|
||||||
.TH NANO 1 "version 2.4.3" "July 2015"
|
.TH NANO 1 "version 2.4.3" "August 2015"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
|
|
||||||
|
@ -275,12 +275,8 @@ it unique. In multibuffer mode, \fBnano\fP will write all the open
|
||||||
buffers to their respective emergency files.
|
buffers to their respective emergency files.
|
||||||
|
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Please send any comments or bug reports to \fBnano@nano-editor.org\fP.
|
Please report any bugs that you encounter via
|
||||||
|
https://savannah.gnu.org/bugs/?group=nano.
|
||||||
The \fBnano\fP mailing list is available from \fBnano-devel@gnu.org\fP.
|
|
||||||
|
|
||||||
To subscribe, email to \fBnano-devel-request@gnu.org\fP with a subject
|
|
||||||
of "subscribe".
|
|
||||||
|
|
||||||
.SH HOMEPAGE
|
.SH HOMEPAGE
|
||||||
http://www.nano-editor.org/
|
http://www.nano-editor.org/
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
.\" Documentation License along with this program. If not, see
|
.\" Documentation License along with this program. If not, see
|
||||||
.\" <http://www.gnu.org/licenses/>.
|
.\" <http://www.gnu.org/licenses/>.
|
||||||
.\"
|
.\"
|
||||||
.TH NANORC 5 "version 2.4.3" "July 2015"
|
.TH NANORC 5 "version 2.4.3" "August 2015"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
|
@ -343,7 +343,7 @@ to an already defined syntax -- useful when you want to
|
||||||
slightly improve a syntax defined in one of the system-installed
|
slightly improve a syntax defined in one of the system-installed
|
||||||
files (which are normally not writable)
|
files (which are normally not writable)
|
||||||
.SH REBINDING KEYS
|
.SH REBINDING KEYS
|
||||||
Key bindings may be reassigned via the following commands:
|
Key bindings can be changed via the following two commands:
|
||||||
.TP
|
.TP
|
||||||
.BI bind " key function menu"
|
.BI bind " key function menu"
|
||||||
Rebinds the key \fIkey\fP to a new function named \fIfunction\fP in the
|
Rebinds the key \fIkey\fP to a new function named \fIfunction\fP in the
|
||||||
|
@ -372,7 +372,7 @@ Example: F10
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
Valid \fIfunction\fP names to be bound include:
|
Valid \fIfunction\fP names to be bound are:
|
||||||
.RS 3
|
.RS 3
|
||||||
.TP 2
|
.TP 2
|
||||||
.B help
|
.B help
|
||||||
|
@ -475,12 +475,12 @@ Scrolls up one line of text from the current position.
|
||||||
.B scrolldown
|
.B scrolldown
|
||||||
Scrolls down one line of text from the current position.
|
Scrolls down one line of text from the current position.
|
||||||
.TP
|
.TP
|
||||||
.B nextword
|
|
||||||
Moves the cursor to the beginning of the next word.
|
|
||||||
.TP
|
|
||||||
.B prevword
|
.B prevword
|
||||||
Moves the cursor to the beginning of the previous word.
|
Moves the cursor to the beginning of the previous word.
|
||||||
.TP
|
.TP
|
||||||
|
.B nextword
|
||||||
|
Moves the cursor to the beginning of the next word.
|
||||||
|
.TP
|
||||||
.B home
|
.B home
|
||||||
Moves the cursor to the beginning of the current line.
|
Moves the cursor to the beginning of the current line.
|
||||||
.TP
|
.TP
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
@smallbook
|
@smallbook
|
||||||
@set EDITION 0.3
|
@set EDITION 0.3
|
||||||
@set VERSION 2.4.3
|
@set VERSION 2.4.3
|
||||||
@set UPDATED July 2015
|
@set UPDATED August 2015
|
||||||
|
|
||||||
@dircategory Editors
|
@dircategory Editors
|
||||||
@direntry
|
@direntry
|
||||||
|
@ -914,7 +914,7 @@ in one of the system-installed files (which are normally not writable).
|
||||||
@node Rebinding Keys
|
@node Rebinding Keys
|
||||||
@section Rebinding Keys
|
@section Rebinding Keys
|
||||||
|
|
||||||
Key bindings may be reassigned via the following two commands in a
|
Key bindings can be changed via the following two commands in a
|
||||||
nanorc file:
|
nanorc file:
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
|
@ -1048,12 +1048,12 @@ Scrolls up one line of text from the current position.
|
||||||
@item scrolldown
|
@item scrolldown
|
||||||
Scrolls down one line of text from the current position.
|
Scrolls down one line of text from the current position.
|
||||||
|
|
||||||
@item nextword
|
|
||||||
Moves the cursor to the beginning of the next word.
|
|
||||||
|
|
||||||
@item prevword
|
@item prevword
|
||||||
Moves the cursor to the beginning of the previous word.
|
Moves the cursor to the beginning of the previous word.
|
||||||
|
|
||||||
|
@item nextword
|
||||||
|
Moves the cursor to the beginning of the next word.
|
||||||
|
|
||||||
@item home
|
@item home
|
||||||
Moves the cursor to the beginning of the current line.
|
Moves the cursor to the beginning of the current line.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue