diff options
author | ZyX <kp-pav@yandex.ru> | 2016-02-28 04:49:26 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2016-02-28 04:54:23 +0300 |
commit | b32396170f2c1cd17f36b8a5eb1ad313f6f9a8c3 (patch) | |
tree | ea9719abe975116c3473e45a282906a76a2acf00 /src | |
parent | a1493215a2e18f3b0a18a7d77222e0bf93ca32b3 (diff) | |
download | rneovim-b32396170f2c1cd17f36b8a5eb1ad313f6f9a8c3.tar.gz rneovim-b32396170f2c1cd17f36b8a5eb1ad313f6f9a8c3.tar.bz2 rneovim-b32396170f2c1cd17f36b8a5eb1ad313f6f9a8c3.zip |
main: Make using :edit term:// run TermOpen event
Ref #4306
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index a2aca65001..92e8774ec4 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -317,7 +317,7 @@ int main(int argc, char **argv) } // open terminals when opening files that start with term:// - do_cmdline_cmd("autocmd BufReadCmd term://* " + do_cmdline_cmd("autocmd BufReadCmd term://* nested " ":call termopen( " // Capture the command string "matchstr(expand(\"<amatch>\"), " |