|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.450
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.450
|
|
|
3ef2ca |
Problem: Not all commands that edit another buffer support the +cmd
|
|
|
3ef2ca |
argument.
|
|
|
3ef2ca |
Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)
|
|
|
3ef2ca |
Files: runtime/doc/windows.txt, src/ex_cmds.h, src/ex_docmd.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.449/runtime/doc/windows.txt 2014-03-25 13:03:44.929793765 +0100
|
|
|
3ef2ca |
--- runtime/doc/windows.txt 2014-09-19 19:53:55.618447914 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1042,1077 ****
|
|
|
3ef2ca |
a number). Insert a backslash before a space in a buffer
|
|
|
3ef2ca |
name.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]b[uffer][!] [N] *:b* *:bu* *:buf* *:buffer* *E86*
|
|
|
3ef2ca |
Edit buffer [N] from the buffer list. If [N] is not given,
|
|
|
3ef2ca |
the current buffer remains being edited. See |:buffer-!| for
|
|
|
3ef2ca |
[!]. This will also edit a buffer that is not in the buffer
|
|
|
3ef2ca |
list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]b[uffer][!] {bufname}
|
|
|
3ef2ca |
Edit buffer for {bufname} from the buffer list. See
|
|
|
3ef2ca |
|:buffer-!| for [!]. This will also edit a buffer that is not
|
|
|
3ef2ca |
in the buffer list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sb[uffer] [N] *:sb* *:sbuffer*
|
|
|
3ef2ca |
Split window and edit buffer [N] from the buffer list. If [N]
|
|
|
3ef2ca |
is not given, the current buffer is edited. Respects the
|
|
|
3ef2ca |
"useopen" setting of 'switchbuf' when splitting. This will
|
|
|
3ef2ca |
also edit a buffer that is not in the buffer list, without
|
|
|
3ef2ca |
setting the 'buflisted' flag.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sb[uffer] {bufname}
|
|
|
3ef2ca |
Split window and edit buffer for {bufname} from the buffer
|
|
|
3ef2ca |
list. This will also edit a buffer that is not in the buffer
|
|
|
3ef2ca |
list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
Note: If what you want to do is split the buffer, make a copy
|
|
|
3ef2ca |
under another name, you can do it this way: >
|
|
|
3ef2ca |
:w foobar | sp #
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bn[ext][!] [N] *:bn* *:bnext* *E87*
|
|
|
3ef2ca |
Go to [N]th next buffer in buffer list. [N] defaults to one.
|
|
|
3ef2ca |
Wraps around the end of the buffer list.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
If you are in a help buffer, this takes you to the next help
|
|
|
3ef2ca |
buffer (if there is one). Similarly, if you are in a normal
|
|
|
3ef2ca |
(non-help) buffer, this takes you to the next normal buffer.
|
|
|
3ef2ca |
--- 1042,1082 ----
|
|
|
3ef2ca |
a number). Insert a backslash before a space in a buffer
|
|
|
3ef2ca |
name.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]b[uffer][!] [+cmd] [N] *:b* *:bu* *:buf* *:buffer* *E86*
|
|
|
3ef2ca |
Edit buffer [N] from the buffer list. If [N] is not given,
|
|
|
3ef2ca |
the current buffer remains being edited. See |:buffer-!| for
|
|
|
3ef2ca |
[!]. This will also edit a buffer that is not in the buffer
|
|
|
3ef2ca |
list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]b[uffer][!] [+cmd] {bufname}
|
|
|
3ef2ca |
Edit buffer for {bufname} from the buffer list. See
|
|
|
3ef2ca |
|:buffer-!| for [!]. This will also edit a buffer that is not
|
|
|
3ef2ca |
in the buffer list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sb[uffer] [+cmd] [N] *:sb* *:sbuffer*
|
|
|
3ef2ca |
Split window and edit buffer [N] from the buffer list. If [N]
|
|
|
3ef2ca |
is not given, the current buffer is edited. Respects the
|
|
|
3ef2ca |
"useopen" setting of 'switchbuf' when splitting. This will
|
|
|
3ef2ca |
also edit a buffer that is not in the buffer list, without
|
|
|
3ef2ca |
setting the 'buflisted' flag.
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sb[uffer] [+cmd] {bufname}
|
|
|
3ef2ca |
Split window and edit buffer for {bufname} from the buffer
|
|
|
3ef2ca |
list. This will also edit a buffer that is not in the buffer
|
|
|
3ef2ca |
list, without setting the 'buflisted' flag.
|
|
|
3ef2ca |
Note: If what you want to do is split the buffer, make a copy
|
|
|
3ef2ca |
under another name, you can do it this way: >
|
|
|
3ef2ca |
:w foobar | sp #
|
|
|
3ef2ca |
+ < Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bn[ext][!] [+cmd] [N] *:bn* *:bnext* *E87*
|
|
|
3ef2ca |
Go to [N]th next buffer in buffer list. [N] defaults to one.
|
|
|
3ef2ca |
Wraps around the end of the buffer list.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
If you are in a help buffer, this takes you to the next help
|
|
|
3ef2ca |
buffer (if there is one). Similarly, if you are in a normal
|
|
|
3ef2ca |
(non-help) buffer, this takes you to the next normal buffer.
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1079,1133 ****
|
|
|
3ef2ca |
the way when you're browsing code/text buffers. The next three
|
|
|
3ef2ca |
commands also work like this.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*:sbn* *:sbnext*
|
|
|
3ef2ca |
! :[N]sbn[ext] [N]
|
|
|
3ef2ca |
Split window and go to [N]th next buffer in buffer list.
|
|
|
3ef2ca |
Wraps around the end of the buffer list. Uses 'switchbuf'
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bN[ext][!] [N] *:bN* *:bNext* *:bp* *:bprevious* *E88*
|
|
|
3ef2ca |
! :[N]bp[revious][!] [N]
|
|
|
3ef2ca |
Go to [N]th previous buffer in buffer list. [N] defaults to
|
|
|
3ef2ca |
one. Wraps around the start of the buffer list.
|
|
|
3ef2ca |
See |:buffer-!| for [!] and 'switchbuf'.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sbN[ext] [N] *:sbN* *:sbNext* *:sbp* *:sbprevious*
|
|
|
3ef2ca |
! :[N]sbp[revious] [N]
|
|
|
3ef2ca |
Split window and go to [N]th previous buffer in buffer list.
|
|
|
3ef2ca |
Wraps around the start of the buffer list.
|
|
|
3ef2ca |
Uses 'switchbuf'.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:br* *:brewind*
|
|
|
3ef2ca |
! :br[ewind][!] Go to first buffer in buffer list. If the buffer list is
|
|
|
3ef2ca |
empty, go to the first unlisted buffer.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:bf* *:bfirst*
|
|
|
3ef2ca |
! :bf[irst] Same as ":brewind".
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:sbr* *:sbrewind*
|
|
|
3ef2ca |
! :sbr[ewind] Split window and go to first buffer in buffer list. If the
|
|
|
3ef2ca |
buffer list is empty, go to the first unlisted buffer.
|
|
|
3ef2ca |
Respects the 'switchbuf' option.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:sbf* *:sbfirst*
|
|
|
3ef2ca |
! :sbf[irst] Same as ":sbrewind".
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:bl* *:blast*
|
|
|
3ef2ca |
! :bl[ast][!] Go to last buffer in buffer list. If the buffer list is
|
|
|
3ef2ca |
empty, go to the last unlisted buffer.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! *:sbl* *:sblast*
|
|
|
3ef2ca |
! :sbl[ast] Split window and go to last buffer in buffer list. If the
|
|
|
3ef2ca |
buffer list is empty, go to the last unlisted buffer.
|
|
|
3ef2ca |
Respects 'switchbuf' option.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bm[odified][!] [N] *:bm* *:bmodified* *E84*
|
|
|
3ef2ca |
Go to [N]th next modified buffer. Note: this command also
|
|
|
3ef2ca |
finds unlisted buffers. If there is no modified buffer the
|
|
|
3ef2ca |
command fails.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sbm[odified] [N] *:sbm* *:sbmodified*
|
|
|
3ef2ca |
Split window and go to [N]th next modified buffer.
|
|
|
3ef2ca |
Respects 'switchbuf' option.
|
|
|
3ef2ca |
Note: this command also finds buffers not in the buffer list.
|
|
|
3ef2ca |
--- 1084,1144 ----
|
|
|
3ef2ca |
the way when you're browsing code/text buffers. The next three
|
|
|
3ef2ca |
commands also work like this.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
+
|
|
|
3ef2ca |
*:sbn* *:sbnext*
|
|
|
3ef2ca |
! :[N]sbn[ext] [+cmd] [N]
|
|
|
3ef2ca |
Split window and go to [N]th next buffer in buffer list.
|
|
|
3ef2ca |
Wraps around the end of the buffer list. Uses 'switchbuf'
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bN[ext][!] [+cmd] [N] *:bN* *:bNext* *:bp* *:bprevious* *E88*
|
|
|
3ef2ca |
! :[N]bp[revious][!] [+cmd] [N]
|
|
|
3ef2ca |
Go to [N]th previous buffer in buffer list. [N] defaults to
|
|
|
3ef2ca |
one. Wraps around the start of the buffer list.
|
|
|
3ef2ca |
See |:buffer-!| for [!] and 'switchbuf'.
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sbN[ext] [+cmd] [N] *:sbN* *:sbNext* *:sbp* *:sbprevious*
|
|
|
3ef2ca |
! :[N]sbp[revious] [+cmd] [N]
|
|
|
3ef2ca |
Split window and go to [N]th previous buffer in buffer list.
|
|
|
3ef2ca |
Wraps around the start of the buffer list.
|
|
|
3ef2ca |
Uses 'switchbuf'.
|
|
|
3ef2ca |
+ Also see ||+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :br[ewind][!] [+cmd] *:br* *:brewind*
|
|
|
3ef2ca |
! Go to first buffer in buffer list. If the buffer list is
|
|
|
3ef2ca |
empty, go to the first unlisted buffer.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :bf[irst] [+cmd] *:bf* *:bfirst*
|
|
|
3ef2ca |
! Same as |:brewind|.
|
|
|
3ef2ca |
! Also see |+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :sbr[ewind] [+cmd] *:sbr* *:sbrewind*
|
|
|
3ef2ca |
! Split window and go to first buffer in buffer list. If the
|
|
|
3ef2ca |
buffer list is empty, go to the first unlisted buffer.
|
|
|
3ef2ca |
Respects the 'switchbuf' option.
|
|
|
3ef2ca |
+ Also see |+cmd|.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :sbf[irst] [+cmd] *:sbf* *:sbfirst*
|
|
|
3ef2ca |
! Same as ":sbrewind".
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :bl[ast][!] [+cmd] *:bl* *:blast*
|
|
|
3ef2ca |
! Go to last buffer in buffer list. If the buffer list is
|
|
|
3ef2ca |
empty, go to the last unlisted buffer.
|
|
|
3ef2ca |
See |:buffer-!| for [!].
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :sbl[ast] [+cmd] *:sbl* *:sblast*
|
|
|
3ef2ca |
! Split window and go to last buffer in buffer list. If the
|
|
|
3ef2ca |
buffer list is empty, go to the last unlisted buffer.
|
|
|
3ef2ca |
Respects 'switchbuf' option.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]bm[odified][!] [+cmd] [N] *:bm* *:bmodified* *E84*
|
|
|
3ef2ca |
Go to [N]th next modified buffer. Note: this command also
|
|
|
3ef2ca |
finds unlisted buffers. If there is no modified buffer the
|
|
|
3ef2ca |
command fails.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! :[N]sbm[odified] [+cmd] [N] *:sbm* *:sbmodified*
|
|
|
3ef2ca |
Split window and go to [N]th next modified buffer.
|
|
|
3ef2ca |
Respects 'switchbuf' option.
|
|
|
3ef2ca |
Note: this command also finds buffers not in the buffer list.
|
|
|
3ef2ca |
*** ../vim-7.4.449/src/ex_cmds.h 2014-09-19 19:39:30.766446025 +0200
|
|
|
3ef2ca |
--- src/ex_cmds.h 2014-09-19 19:53:55.618447914 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 132,140 ****
|
|
|
3ef2ca |
EX(CMD_aunmenu, "aunmenu", ex_menu,
|
|
|
3ef2ca |
EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_buffer, "buffer", ex_buffer,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|BUFNAME|BUFUNL|COUNT|EXTRA|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bNext, "bNext", ex_bprevious,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_ball, "ball", ex_buffer_all,
|
|
|
3ef2ca |
RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_badd, "badd", ex_edit,
|
|
|
3ef2ca |
--- 132,140 ----
|
|
|
3ef2ca |
EX(CMD_aunmenu, "aunmenu", ex_menu,
|
|
|
3ef2ca |
EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_buffer, "buffer", ex_buffer,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|BUFNAME|BUFUNL|COUNT|EXTRA|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bNext, "bNext", ex_bprevious,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_ball, "ball", ex_buffer_all,
|
|
|
3ef2ca |
RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_badd, "badd", ex_edit,
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 146,164 ****
|
|
|
3ef2ca |
EX(CMD_belowright, "belowright", ex_wrongmodifier,
|
|
|
3ef2ca |
NEEDARG|EXTRA|NOTRLCOM),
|
|
|
3ef2ca |
EX(CMD_bfirst, "bfirst", ex_brewind,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_blast, "blast", ex_blast,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bmodified, "bmodified", ex_bmodified,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bnext, "bnext", ex_bnext,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_botright, "botright", ex_wrongmodifier,
|
|
|
3ef2ca |
NEEDARG|EXTRA|NOTRLCOM),
|
|
|
3ef2ca |
EX(CMD_bprevious, "bprevious", ex_bprevious,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_brewind, "brewind", ex_brewind,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_break, "break", ex_break,
|
|
|
3ef2ca |
TRLBAR|SBOXOK|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_breakadd, "breakadd", ex_breakadd,
|
|
|
3ef2ca |
--- 146,164 ----
|
|
|
3ef2ca |
EX(CMD_belowright, "belowright", ex_wrongmodifier,
|
|
|
3ef2ca |
NEEDARG|EXTRA|NOTRLCOM),
|
|
|
3ef2ca |
EX(CMD_bfirst, "bfirst", ex_brewind,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_blast, "blast", ex_blast,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bmodified, "bmodified", ex_bmodified,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_bnext, "bnext", ex_bnext,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_botright, "botright", ex_wrongmodifier,
|
|
|
3ef2ca |
NEEDARG|EXTRA|NOTRLCOM),
|
|
|
3ef2ca |
EX(CMD_bprevious, "bprevious", ex_bprevious,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_brewind, "brewind", ex_brewind,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_break, "break", ex_break,
|
|
|
3ef2ca |
TRLBAR|SBOXOK|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_breakadd, "breakadd", ex_breakadd,
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 814,836 ****
|
|
|
3ef2ca |
EX(CMD_saveas, "saveas", ex_write,
|
|
|
3ef2ca |
BANG|DFLALL|FILE1|ARGOPT|CMDWIN|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbuffer, "sbuffer", ex_buffer,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|BUFNAME|BUFUNL|COUNT|EXTRA|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbNext, "sbNext", ex_bprevious,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sball, "sball", ex_buffer_all,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbfirst, "sbfirst", ex_brewind,
|
|
|
3ef2ca |
! TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sblast, "sblast", ex_blast,
|
|
|
3ef2ca |
! TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbmodified, "sbmodified", ex_bmodified,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbnext, "sbnext", ex_bnext,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbprevious, "sbprevious", ex_bprevious,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbrewind, "sbrewind", ex_brewind,
|
|
|
3ef2ca |
! TRLBAR),
|
|
|
3ef2ca |
EX(CMD_scriptnames, "scriptnames", ex_scriptnames,
|
|
|
3ef2ca |
TRLBAR|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_scriptencoding, "scriptencoding", ex_scriptencoding,
|
|
|
3ef2ca |
--- 814,836 ----
|
|
|
3ef2ca |
EX(CMD_saveas, "saveas", ex_write,
|
|
|
3ef2ca |
BANG|DFLALL|FILE1|ARGOPT|CMDWIN|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbuffer, "sbuffer", ex_buffer,
|
|
|
3ef2ca |
! BANG|RANGE|NOTADR|BUFNAME|BUFUNL|COUNT|EXTRA|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbNext, "sbNext", ex_bprevious,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sball, "sball", ex_buffer_all,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbfirst, "sbfirst", ex_brewind,
|
|
|
3ef2ca |
! EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sblast, "sblast", ex_blast,
|
|
|
3ef2ca |
! EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbmodified, "sbmodified", ex_bmodified,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbnext, "sbnext", ex_bnext,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbprevious, "sbprevious", ex_bprevious,
|
|
|
3ef2ca |
! RANGE|NOTADR|COUNT|EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_sbrewind, "sbrewind", ex_brewind,
|
|
|
3ef2ca |
! EDITCMD|TRLBAR),
|
|
|
3ef2ca |
EX(CMD_scriptnames, "scriptnames", ex_scriptnames,
|
|
|
3ef2ca |
TRLBAR|CMDWIN),
|
|
|
3ef2ca |
EX(CMD_scriptencoding, "scriptencoding", ex_scriptencoding,
|
|
|
3ef2ca |
*** ../vim-7.4.449/src/ex_docmd.c 2014-09-09 12:21:57.716501404 +0200
|
|
|
3ef2ca |
--- src/ex_docmd.c 2014-09-19 19:53:55.622447914 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5135,5140 ****
|
|
|
3ef2ca |
--- 5135,5142 ----
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
|
|
|
3ef2ca |
else
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5147,5152 ****
|
|
|
3ef2ca |
--- 5149,5156 ----
|
|
|
3ef2ca |
exarg_T *eap;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5158,5163 ****
|
|
|
3ef2ca |
--- 5162,5169 ----
|
|
|
3ef2ca |
exarg_T *eap;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5171,5176 ****
|
|
|
3ef2ca |
--- 5177,5184 ----
|
|
|
3ef2ca |
exarg_T *eap;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5184,5189 ****
|
|
|
3ef2ca |
--- 5192,5199 ----
|
|
|
3ef2ca |
exarg_T *eap;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 5195,5200 ****
|
|
|
3ef2ca |
--- 5205,5212 ----
|
|
|
3ef2ca |
exarg_T *eap;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
|
|
|
3ef2ca |
+ if (eap->do_ecmd_cmd != NULL)
|
|
|
3ef2ca |
+ do_cmdline_cmd(eap->do_ecmd_cmd);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.449/src/version.c 2014-09-19 19:39:30.766446025 +0200
|
|
|
3ef2ca |
--- src/version.c 2014-09-19 19:54:39.442448010 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 743,744 ****
|
|
|
3ef2ca |
--- 743,746 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 450,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
166. You have been on your computer soo long that you didn't realize
|
|
|
3ef2ca |
you had grandchildren.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|