mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
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:
@@ -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),
|
||||
|
Reference in New Issue
Block a user