diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-14 15:44:31 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-27 14:10:28 -0500 |
commit | 7565b48e9cc4f64d7bf008d62b4a7479676a7b09 (patch) | |
tree | 6eacc0a39c2c9cf689e4f7f5a4876c627f4bc059 /src | |
parent | 2c59277ca867cb3cb0144adedcfe05373d5498de (diff) | |
download | rneovim-7565b48e9cc4f64d7bf008d62b4a7479676a7b09.tar.gz rneovim-7565b48e9cc4f64d7bf008d62b4a7479676a7b09.tar.bz2 rneovim-7565b48e9cc4f64d7bf008d62b4a7479676a7b09.zip |
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)
https://github.com/vim/vim/commit/ebdd90ac282909c0bfcd6e83e70505abbbd5a38d
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_cmds.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index eaf18fc664..b998b81284 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -1272,18 +1272,18 @@ return { 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), addr_type=ADDR_LINES, |