diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-06 19:50:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-06 19:50:41 +0000 |
commit | cef9dcc37ef6dce3d98cf1550c3731fff9d451b5 (patch) | |
tree | 1ed76e3b15dfd3280a92cf0699d5c851730f09bd /runtime | |
parent | 943d2b5b80e81d2b089bd6ca391a5fcbaccdde24 (diff) | |
download | vim-git-cef9dcc37ef6dce3d98cf1550c3731fff9d451b5.tar.gz |
updated for version 7.0163
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/autoload/htmlcomplete.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/htmlcomplete.vim b/runtime/autoload/htmlcomplete.vim index bd138e6bb..806eb5244 100644 --- a/runtime/autoload/htmlcomplete.vim +++ b/runtime/autoload/htmlcomplete.vim @@ -463,7 +463,7 @@ function! htmlcomplete#CompleteTags(findstart, base) let tags = g:xmldata_xhtml10s[opentag][0] - for m in tags + for m in sort(tags) if m =~ '^'.context call add(res, m) elseif m =~ context |