rcfile: rename bindable function 'curpos' to 'location'

It is better that the bindable function is named the same as the
tag in the help lines, and that it is not an ugly abbreviation.
This commit is contained in:
Benno Schulenberg 2020-07-05 11:02:41 +02:00
parent 2261377309
commit ee78f2348b
4 changed files with 11 additions and 6 deletions

View File

@ -1308,8 +1308,10 @@ Cuts all text from the cursor position till the end of the buffer.
Sets the mark at the current position, to start selecting text.
Or, when it is set, unsets the mark.
@item curpos
Shows the current cursor position: the line, column, and character positions.
@item location
Reports the current position of the cursor in the buffer:
the line, column, and character positions.
(The old name of this function, 'curpos', is deprecated.)
@item wordcount
Counts the number of words, lines and characters in the current buffer.

View File

@ -612,8 +612,10 @@ Cuts all text from the cursor position till the end of the buffer.
Sets the mark at the current position, to start selecting text.
Or, when it is set, unsets the mark.
.TP
.B curpos
Shows the current cursor position: the line, column, and character positions.
.B location
Reports the current position of the cursor in the buffer:
the line, column, and character positions.
(The old name of this function, 'curpos', is deprecated.)
.TP
.B wordcount
Counts the number of words, lines and characters in the current buffer.

View File

@ -269,7 +269,7 @@
#bind ^X cut all
#bind ^C copy main
#bind ^V paste all
#bind ^P curpos main
#bind ^P location main
#bind ^A mark main
#unbind ^K main
#unbind ^U all

View File

@ -279,7 +279,8 @@ keystruct *strtosc(const char *input)
else if (!strcmp(input, "formatter"))
s->func = do_formatter;
#endif
else if (!strcmp(input, "curpos"))
else if (!strcmp(input, "location") ||
!strcmp(input, "curpos")) /* Deprecated; remove in 2022. */
s->func = report_cursor_position;
else if (!strcmp(input, "gotoline"))
s->func = do_gotolinecolumn_void;