Mercurial > vim
annotate src/proto/ex_cmds2.pro @ 28749:4a9fdf708575 v8.2.4899
patch 8.2.4899: with latin1 encoding CTRL-W might go before the cmdline
Commit: https://github.com/vim/vim/commit/ef02f16609ff0a26ffc6e20263523424980898fe
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 7 10:49:10 2022 +0100
patch 8.2.4899: with latin1 encoding CTRL-W might go before the cmdline
Problem: With latin1 encoding CTRL-W might go before the start of the
command line.
Solution: Check already being at the start of the command line.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 07 May 2022 12:00:03 +0200 |
parents | b32b67a108f2 |
children |
rev | line source |
---|---|
7 | 1 /* ex_cmds2.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
2 int autowrite(buf_T *buf, int forceit); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
3 void autowrite_all(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
4 int check_changed(buf_T *buf, int flags); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
5 void browse_save_fname(buf_T *buf); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
6 void dialog_changed(buf_T *buf, int checkall); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
7 int can_abandon(buf_T *buf, int forceit); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
8 int check_changed_any(int hidden, int unload); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
9 int check_fname(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
10 int buf_write_all(buf_T *buf, int forceit); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
11 void ex_listdo(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
12 void ex_compiler(exarg_T *eap); |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10122
diff
changeset
|
13 void init_pyxversion(void); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10122
diff
changeset
|
14 void ex_pyxfile(exarg_T *eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10122
diff
changeset
|
15 void ex_pyx(exarg_T *eap); |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
10122
diff
changeset
|
16 void ex_pyxdo(exarg_T *eap); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
7469
diff
changeset
|
17 void ex_checktime(exarg_T *eap); |
7 | 18 /* vim: set ft=c : */ |