diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-07-23 14:03:08 -0300 |
---|---|---|
committer | Felipe Morales <hel.sheep@gmail.com> | 2015-07-23 14:03:08 -0300 |
commit | a39ce92f0be2eb2470aecd7e8d7ed4f9b9510fce (patch) | |
tree | c964141fec46911f1db4a95783929f3fc38da1ef /src/nvim/buffer.c | |
parent | 0e65caa40ed9dbd1e06d023cd7eadce16f444f30 (diff) | |
download | rneovim-a39ce92f0be2eb2470aecd7e8d7ed4f9b9510fce.tar.gz rneovim-a39ce92f0be2eb2470aecd7e8d7ed4f9b9510fce.tar.bz2 rneovim-a39ce92f0be2eb2470aecd7e8d7ed4f9b9510fce.zip |
Use NVIM instead of VIM in default title.
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 4724f98eca..2f87c9cbd2 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -2679,7 +2679,7 @@ void maketitle(void) append_arg_number(curwin, buf, SPACE_FOR_ARGNR, FALSE); - STRCAT(buf, " - VIM"); + STRCAT(buf, " - NVIM"); if (maxlen > 0) { /* make it shorter by removing a bit in the middle */ |