vim-patch:8.0.0006

Problem:    ":lb" is interpreted as ":lbottom" while the documentation says it
            means ":lbuffer".
Solution:   Adjust the order of the commands. (haya14busa, closes vim/vim#1093)

ebdd90ac28
This commit is contained in:
James McCoy
2016-12-14 15:44:31 -05:00
parent 2c59277ca8
commit 7565b48e9c

View File

@@ -1271,18 +1271,18 @@ return {
addr_type=ADDR_LINES,
func='ex_later',
},
{
command='lbottom',
flags=bit.bor(TRLBAR),
addr_type=ADDR_LINES,
func='ex_cbottom',
},
{
command='lbuffer',
flags=bit.bor(BANG, RANGE, NOTADR, WORD1, TRLBAR),
addr_type=ADDR_LINES,
func='ex_cbuffer',
},
{
command='lbottom',
flags=bit.bor(TRLBAR),
addr_type=ADDR_LINES,
func='ex_cbottom',
},
{
command='lcd',
flags=bit.bor(BANG, FILE1, TRLBAR, CMDWIN),