diff options
author | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-15 22:02:10 +0200 |
---|---|---|
committer | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-26 19:32:31 +0200 |
commit | 3ee55edd2e27dd66c3bf8c319929beb0a6426bb3 (patch) | |
tree | c84868d920f706be05c71a196449da5c7a9b3bc6 /src/nvim/main.c | |
parent | 4f844c587c18b12ffb9253f461557a8a8da258af (diff) | |
download | rneovim-3ee55edd2e27dd66c3bf8c319929beb0a6426bb3.tar.gz rneovim-3ee55edd2e27dd66c3bf8c319929beb0a6426bb3.tar.bz2 rneovim-3ee55edd2e27dd66c3bf8c319929beb0a6426bb3.zip |
vim-patch:8.1.0644: finding next sign ID is inefficient
Problem: Finding next sign ID is inefficient.
Solution: Add next_sign_id. (Yegappan Lakshmanan, closes vim/vim#3717)
https://github.com/vim/vim/commit/6436cd83f90a0efc326798792e49e8ff96a43dce
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 4e1c7dff57..93b31d684e 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1337,6 +1337,8 @@ static void init_path(const char *exename) // shipped with Windows package. This also mimics SearchPath(). os_setenv_append_path(exepath); #endif + + init_signs(); } /// Get filename from command line, if any. |