diff options
author | James McCoy <jamessan@jamessan.com> | 2016-08-11 09:32:47 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-08-11 09:32:47 -0400 |
commit | b805a7149580685edfcebcc96285e1bb96bb103d (patch) | |
tree | 5b5990de704d01c0d66b200324d08f3ef3ebc94a /src/nvim/ex_docmd.c | |
parent | 521ca58ff996b8d0c4674725a2d0c056a9bb8884 (diff) | |
download | rneovim-b805a7149580685edfcebcc96285e1bb96bb103d.tar.gz rneovim-b805a7149580685edfcebcc96285e1bb96bb103d.tar.bz2 rneovim-b805a7149580685edfcebcc96285e1bb96bb103d.zip |
Re-add support for the :browse command modifier
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)) |