Skip to content

Commit

Permalink
fix the order of lbuffer and lbottom to be compatible with help
Browse files Browse the repository at this point in the history
:lbo[ttom]
:lb[uffer][!]

:lbottom was introduced by patch 7.4.2010
vim@537ef08
  • Loading branch information
haya14busa committed Sep 17, 2016
1 parent d079690 commit 2329c1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ex_cmds.h
Original file line number Diff line number Diff line change
Expand Up @@ -730,12 +730,12 @@ EX(CMD_laddfile, "laddfile", ex_cfile,
EX(CMD_later, "later", ex_later,
TRLBAR|EXTRA|NOSPC|CMDWIN,
ADDR_LINES),
EX(CMD_lbottom, "lbottom", ex_cbottom,
TRLBAR,
ADDR_LINES),
EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
BANG|RANGE|NOTADR|WORD1|TRLBAR,
ADDR_LINES),
EX(CMD_lbottom, "lbottom", ex_cbottom,
TRLBAR,
ADDR_LINES),
EX(CMD_lcd, "lcd", ex_cd,
BANG|FILE1|TRLBAR|CMDWIN,
ADDR_LINES),
Expand Down

0 comments on commit 2329c1f

Please sign in to comment.