mirror of
https://github.com/neovim/neovim.git
synced 2025-11-26 20:20:42 +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,
|
addr_type=ADDR_LINES,
|
||||||
func='ex_later',
|
func='ex_later',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
command='lbottom',
|
|
||||||
flags=bit.bor(TRLBAR),
|
|
||||||
addr_type=ADDR_LINES,
|
|
||||||
func='ex_cbottom',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
command='lbuffer',
|
command='lbuffer',
|
||||||
flags=bit.bor(BANG, RANGE, NOTADR, WORD1, TRLBAR),
|
flags=bit.bor(BANG, RANGE, NOTADR, WORD1, TRLBAR),
|
||||||
addr_type=ADDR_LINES,
|
addr_type=ADDR_LINES,
|
||||||
func='ex_cbuffer',
|
func='ex_cbuffer',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
command='lbottom',
|
||||||
|
flags=bit.bor(TRLBAR),
|
||||||
|
addr_type=ADDR_LINES,
|
||||||
|
func='ex_cbottom',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
command='lcd',
|
command='lcd',
|
||||||
flags=bit.bor(BANG, FILE1, TRLBAR, CMDWIN),
|
flags=bit.bor(BANG, FILE1, TRLBAR, CMDWIN),
|
||||||
|
|||||||
Reference in New Issue
Block a user