diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-11 18:58:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-11 18:58:26 -0400 |
commit | a1682281f427ab011930f421e5691cf4bf230df1 (patch) | |
tree | bea2bfef53af6182fce4437a3f82ddf2e46879de /src/nvim/ex_docmd.c | |
parent | 8c4c366a9ebeff6c549f85316cbc8838fcfae56a (diff) | |
parent | 6aefd14482fe58d4c056bd8e1e1651640387a36e (diff) | |
download | rneovim-a1682281f427ab011930f421e5691cf4bf230df1.tar.gz rneovim-a1682281f427ab011930f421e5691cf4bf230df1.tar.bz2 rneovim-a1682281f427ab011930f421e5691cf4bf230df1.zip |
Merge #5214 from jamessan/browse-modifier
Re-add ":browse" command modifier and use it with ":oldfiles"
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 8bae817211..1e54f03ba0 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -1313,8 +1313,9 @@ static char_u * do_one_cmd(char_u **cmdlinep, case 'b': if (checkforcmd(&ea.cmd, "belowright", 3)) { cmdmod.split |= WSP_BELOW; continue; - } + } if (checkforcmd(&ea.cmd, "browse", 3)) { + cmdmod.browse = true; continue; } if (!checkforcmd(&ea.cmd, "botright", 2)) |