Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
c15ef30c
Commit
c15ef30c
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0229
parent
e0fa560e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
runtime/autoload/syntaxcomplete.vim
+10
-3
10 additions, 3 deletions
runtime/autoload/syntaxcomplete.vim
runtime/autoload/xmlcomplete.vim
+3
-2
3 additions, 2 deletions
runtime/autoload/xmlcomplete.vim
runtime/doc/insert.txt
+2
-1
2 additions, 1 deletion
runtime/doc/insert.txt
with
15 additions
and
6 deletions
runtime/autoload/syntaxcomplete.vim
+
10
−
3
View file @
c15ef30c
" Vim completion script
" Language: All languages, uses existing syntax highlighting rules
" Maintainer: David Fishburn <fishburn@ianywhere.com>
" Version: 1.
1
" Last Change:
Wed
Mar
0
1 2006
9:58:14
PM
" Version: 1.
2
" Last Change:
Sat
Mar 1
8
2006
8:25:30
PM
" Set completion with CTRL-X CTRL-O to autoloaded function.
" This check is in place in case this script is
" sourced directly instead of using the autoload feature.
if
exists
(
'+omnifunc'
)
setlocal
omnifunc
=
syntaxcomplete#Complete
" Do not set the option if already set since this
" results in an E117 warning.
if
&
omnifunc
==
""
setlocal
omnifunc
=
syntaxcomplete#Complete
endif
endif
if
exists
(
'g:loaded_syntax_completion'
)
...
...
@@ -22,6 +28,7 @@ let s:syn_remove_words = 'match,matchgroup=,contains,'.
let
s:cache_name
=
[]
let
s:cache_list
=
[]
let
s:prepended
=
''
" This function is used for the 'omnifunc' option.
function
!
syntaxcomplete#Complete
(
findstart
,
base
)
...
...
This diff is collapsed.
Click to expand it.
runtime/autoload/xmlcomplete.vim
+
3
−
2
View file @
c15ef30c
" Vim completion script
" Language: XML
" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl )
" Last Change: 2006
Feb
1
8
" Last Change: 2006
Mar
1
9
" This function will create Dictionary with users namespace strings and values
" canonical (system) names of data files. Names should be lowercase,
...
...
@@ -81,8 +81,9 @@ function! xmlcomplete#CompleteTags(findstart, base)
let
context_lines
=
getline
(
curline
-
i
,
curline
)
let
b:compl_context
=
join
(
context_lines
,
' '
)
break
elseif
context_line
=~
'>[^<]*$'
elseif
context_line
=~
'>[^<]*$'
||
i
==
curline
" Normal tag line, no need for completion at all
" OR reached first line without tag at all
let
b:compl_context
=
''
break
endif
...
...
This diff is collapsed.
Click to expand it.
runtime/doc/insert.txt
+
2
−
1
View file @
c15ef30c
*insert.txt* For Vim version 7.0aa. Last change: 2006 Mar 1
5
*insert.txt* For Vim version 7.0aa. Last change: 2006 Mar 1
9
VIM REFERENCE MANUAL by Bram Moolenaar
...
...
@@ -993,6 +993,7 @@ Each list item can either be a string or a Dictionary. When it is a string it
is used as the completion. When it is a Dictionary it can contain these
items:
word the completion, mandatory
abbr abbreviation of "word", to be used in the menu
menu extra text for the popup menu
info more information about the item
kind single letter indicating the type of completion
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment