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
555cdc2f
Commit
555cdc2f
authored
15 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Updated runtime files.
parent
3e8cb587
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
runtime/doc/todo.txt
+12
-3
12 additions, 3 deletions
runtime/doc/todo.txt
runtime/syntax/asm.vim
+7
-13
7 additions, 13 deletions
runtime/syntax/asm.vim
runtime/syntax/screen.vim
+202
-37
202 additions, 37 deletions
runtime/syntax/screen.vim
with
221 additions
and
53 deletions
runtime/doc/todo.txt
+
12
−
3
View file @
555cdc2f
*todo.txt* For Vim version 7.2. Last change: 2010 Jan
06
*todo.txt* For Vim version 7.2. Last change: 2010 Jan
12
VIM REFERENCE MANUAL by Bram Moolenaar
VIM REFERENCE MANUAL by Bram Moolenaar
...
@@ -30,10 +30,13 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
...
@@ -30,10 +30,13 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
*known-bugs*
-------------------- Known bugs and current work -----------------------
-------------------- Known bugs and current work -----------------------
Patch from Dominique Pelle to comment out unused functions. (2009 Dec 25)
Patch from Dominique Pelle, documentation fixes. (2010 Jan 9)
Another patch for README files.
Extention for MzScheme interface. (Sergey Khorev, 2009 Dec 21, update Dec 26)
Extention for MzScheme interface. (Sergey Khorev, 2009 Dec 21, update Dec 26)
patch from Sergey Khorev for "*" command escaping. (2010 Jan 5)
Patch: :compiler command doesn't function properly when invoked in a function
Patch: :compiler command doesn't function properly when invoked in a function
(Yukihiro Nakadaira)
(Yukihiro Nakadaira)
...
@@ -48,6 +51,12 @@ don't change it.
...
@@ -48,6 +51,12 @@ don't change it.
Patch to make CTRL-] work on scheme keywords. (Sergey Khorev, 2010 Jan 5)
Patch to make CTRL-] work on scheme keywords. (Sergey Khorev, 2010 Jan 5)
Omni menu position one column too far to the right, double-wide chars split to
next line. (Jiang Ma, 2010 Jan 10)
Explicit example from Dominique.
Need to check that the last character fits?
Patch from Dominique Pelle. (2010 Jan 12)
has("win64") returns zero. Patch from Sergey Khorev, 2009 Jan 5.
has("win64") returns zero. Patch from Sergey Khorev, 2009 Jan 5.
Or define WIN64 when _WIN64 is defined, change all _WIN64 to WIN64.
Or define WIN64 when _WIN64 is defined, change all _WIN64 to WIN64.
...
@@ -1134,7 +1143,7 @@ restored. (Luc St-Louis)
...
@@ -1134,7 +1143,7 @@ restored. (Luc St-Louis)
Vim 7.3:
Vim 7.3:
- Use latest autoconf (
3
.6
4
)
- Use latest autoconf (
2
.6
5
)
- Use NSIS 2.45, it includes Windows 7 support.
- Use NSIS 2.45, it includes Windows 7 support.
- Include all files in distro, no "extra" and "lang" package.
- Include all files in distro, no "extra" and "lang" package.
- Create Mercurial repository.
- Create Mercurial repository.
...
...
This diff is collapsed.
Click to expand it.
runtime/syntax/asm.vim
+
7
−
13
View file @
555cdc2f
" Vim syntax file
" Vim syntax file
" Language: GNU Assembler
" Language: GNU Assembler
" Maintainer: Kevin Dahlhausen <kdahlhaus@yahoo.com>
" Maintainer: Erik Wognsen <erik.wognsen@gmail.com>
" Last Change: 2002 Sep 19
" Previous maintainer:
" Kevin Dahlhausen <kdahlhaus@yahoo.com>
" Last Change: 2010 Jan 9
" For version 5.x: Clear all syntax items
" For version 5.x: Clear all syntax items
" For version 6.
x
: Quit when a syntax file was already loaded
" For version 6.
0 and later
: Quit when a syntax file was already loaded
if
version
<
600
if
version
<
600
syntax
clear
syntax
clear
elseif
exists
(
"b:current_syntax"
)
elseif
exists
(
"b:current_syntax"
)
...
@@ -13,7 +15,6 @@ endif
...
@@ -13,7 +15,6 @@ endif
syn
case ignore
syn
case ignore
" storage types
" storage types
syn
match
asmType
"\.long"
syn
match
asmType
"\.long"
syn
match
asmType
"\.ascii"
syn
match
asmType
"\.ascii"
...
@@ -44,9 +45,8 @@ syn match octNumber "0[0-7][0-7]\+"
...
@@ -44,9 +45,8 @@ syn match octNumber "0[0-7][0-7]\+"
syn
match
hexNumber
"0[xX][0-9a-fA-F]\+"
syn
match
hexNumber
"0[xX][0-9a-fA-F]\+"
syn
match
binNumber
"0[bB][0-1]*"
syn
match
binNumber
"0[bB][0-1]*"
syn
match
asmComment
"#.*"
syn
match
asmSpecialComment
";\*\*\*.*"
syn
region asmComment start
=
"/\*"
end
=
"\*/"
syn
match
asmComment
";.*"
hs
=
s
+
1
syn
match
asmInclude
"\.include"
syn
match
asmInclude
"\.include"
syn
match
asmCond
"\.if"
syn
match
asmCond
"\.if"
...
@@ -86,15 +86,9 @@ if version >= 508 || !exists("did_asm_syntax_inits")
...
@@ -86,15 +86,9 @@ if version >= 508 || !exists("did_asm_syntax_inits")
HiLink octNumber Number
HiLink octNumber Number
HiLink binNumber Number
HiLink binNumber Number
HiLink asmSpecialComment Comment
HiLink asmIdentifier Identifier
HiLink asmIdentifier Identifier
HiLink asmType Type
HiLink asmType Type
" My default color overrides:
" hi asmSpecialComment ctermfg=red
" hi asmIdentifier ctermfg=lightcyan
" hi asmType ctermbg=black ctermfg=brown
delcommand
HiLink
delcommand
HiLink
endif
endif
...
...
This diff is collapsed.
Click to expand it.
runtime/syntax/screen.vim
+
202
−
37
View file @
555cdc2f
" Vim syntax file
" Vim syntax file
" Language: screen(1) configuration file
" Language: screen(1) configuration file
" Maintainer: Nikolai Weibull <now@bitwi.se>
" Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 20
06-04-19
" Latest Revision: 20
10-01-03
if
exists
(
"b:current_syntax"
)
if
exists
(
"b:current_syntax"
)
finish
finish
...
@@ -15,54 +15,219 @@ syn match screenEscape '\\.'
...
@@ -15,54 +15,219 @@ syn match screenEscape '\\.'
syn
keyword screenTodo contained TODO FIXME XXX NOTE
syn
keyword screenTodo contained TODO FIXME XXX NOTE
syn
region screenComment
display
oneline start
=
'#'
end
=
'$'
syn
region screenComment
display
oneline start
=
'#'
end
=
'$'
\
contains
=
screenTodo
,
@Spell
\
contains
=
screenTodo
,
@Spell
syn
region screenString
display
oneline start
=+
"+ skip=+\\"
+
end
=+
"
+
syn
region screenString
display
oneline start
=+
"+ skip=+\\"
+
end
=+
"
+
\
contains
=
screenVariable
,
screenSpecial
\
contains
=
screenVariable
,
screenSpecial
syn
region screenLiteral
display
oneline start
=+
'+ skip=+\\'
+
end
=+
'
+
syn
region screenLiteral
display
oneline start
=+
'+ skip=+\\'
+
end
=+
'
+
syn
match
screenVariable contained
display
'$\(\h\w*\|{\h\w*}\)'
syn
match
screenVariable contained
display
'$\
%
(\h\w*\|{\h\w*}\)'
syn
keyword screenBoolean
on
off
syn
keyword screenBoolean
on
off
syn
match
screenNumbers
display
'\<\d\+\>'
syn
match
screenNumbers
display
'\<\d\+\>'
syn
match
screenSpecials contained
syn
match
screenSpecials contained
\
'%\([%aAdDhlmMstuwWyY?:{]\|[0-9]*n\|0?cC\)'
\
'%\
%
([%aAdDhlmMstuwWyY?:{]\|[0-9]*n\|0?cC\)'
syn
keyword screenCommands acladd aclchg acldel aclgrp aclumask activity
syn
keyword screenCommands
\
addacl allpartial at attrcolor autodetach
\
acladd
\
bell_msg bind bindkey bufferfile caption chacl
\
aclchg
\
chdir
clear colon command compacthist console
\
acldel
\
copy
copy_regcrlf
debug
detach
digraph
dinfo
\
aclgrp
\
crlf displays dumptermcap echo exec fit focus
\
aclumask
\
height
help
history
info kill lastmsg license
\
activity
\
lockscreen markkeys meta msgminwait msgwait
\
addacl
\
multiuser nethack
next
nonblock
number
only
\
allpartial
\
other partial_state password
paste
pastefont
\
altscreen
\
pow_break pow_detach_msg
prev
printcmd process
\
at
\
quit
readbuf readreg redisplay register
\
attrcolor
\
remove
removebuf reset
resize
screen select
\
autodetach
\
sessionname
setenv
shelltitle silencewait
\
autonuke
\
verbose
sleep
sorendition
split
startup_message
\
backtick
\
stuff
su
suspend
time
title
umask
version
wall
\
bce
\
width writebuf xoff xon defmode hardstatus
\
bd_bc_down
\
altscreen
break
breaktype copy_reg defbreaktype
\
bd_bc_left
\
defencoding deflog
encoding
eval
ignorecase
\
bd_bc_right
\
ins_reg maxwin partial pow_detach setsid
source
\
bd_bc_up
\
unsetenv windowlist windows defautonuke autonuke
\
bd_bell
\
defbce bce defc1 c1 defcharset charset defescape
\
bd_braille_table
\
escape
defflow flow defkanji kanji deflogin
\
bd_eightdot
\
login defmonitor monitor defhstatus hstatus
\
bd_info
\
defobuflimit obuflimit defscrollback scrollback
\
bd_link
\
defshell
shell
defsilence silence defslowpaste
\
bd_lower_left
\
slowpaste defutf8 utf8 defwrap
wrap
defwritelock
\
bd_lower_right
\
writelock defzombie zombie defgr
gr
hardcopy
\
bd_ncrc
\
hardcopy_append hardcopydir hardstatus
log
\
bd_port
\
logfile login logtstamp mapdefault mapnotnext
\
bd_scroll
\
maptimeout
term
termcap terminfo termcapinfo
\
bd_skip
\
vbell vbell_msg vbellwait
\
bd_start_braille
\
bd_type
\
bd_upper_left
\
bd_upper_right
\
bd_width
\
bell
\
bell_msg
\
bind
\
bindkey
\
blanker
\
blankerprg
\
break
\
breaktype
\
bufferfile
\
c1
\
caption
\
chacl
\
charset
\
chdir
\
clear
\
colon
\
command
\
compacthist
\
console
\
copy
\
crlf
\
debug
\
defautonuke
\
defbce
\
defbreaktype
\
defc1
\
defcharset
\
defencoding
\
defescape
\
defflow
\
defgr
\
defhstatus
\
defkanji
\
deflog
\
deflogin
\
defmode
\
defmonitor
\
defnonblock
\
defobuflimit
\
defscrollback
\
defshell
\
defsilence
\
defslowpaste
\
defutf8
\
defwrap
\
defwritelock
\
detach
\
digraph
\
dinfo
\
displays
\
dumptermcap
\
echo
\
encoding
\
escape
\
eval
\
exec
\
fit
\
flow
\
focus
\
gr
\
hardcopy
\
hardcopy_append
\
hardcopydir
\
hardstatus
\
height
\
help
\
history
\
hstatus
\
idle
\
ignorecase
\
info
\
kanji
\
kill
\
lastmsg
\
layout
\
license
\
lockscreen
\
log
\
logfile
\
login
\
logtstamp
\
mapdefault
\
mapnotnext
\
maptimeout
\
markkeys
\
maxwin
\
meta
\
monitor
\
msgminwait
\
msgwait
\
multiuser
\
nethack
\
next
\
nonblock
\
number
\
obuflimit
\
only
\
other
\
partial
\
password
\
paste
\
pastefont
\
pow_break
\
pow_detach
\
pow_detach_msg
\
prev
\
printcmd
\
process
\
quit
\
readbuf
\
readreg
\
redisplay
\
register
\
remove
\
removebuf
\
reset
\
resize
\
screen
\
scrollback
\
select
\
sessionname
\
setenv
\
setsid
\
shell
\
shelltitle
\
silence
\
silencewait
\
sleep
\
slowpaste
\
sorendition
\
source
\
split
\
startup_message
\
stuff
\
su
\
suspend
\
term
\
termcap
\
termcapinfo
\
terminfo
\
time
\
title
\
umask
\
unsetenv
\
utf8
\
vbell
\
vbell_msg
\
vbellwait
\
verbose
\
version
\
wall
\
width
\
windowlist
\
windows
\
wrap
\
writebuf
\
writelock
\
xoff
\
xon
\
zmodem
\
zombie
hi
def
link screenEscape Special
hi
def
link screenEscape Special
hi
def
link screenComment Comment
hi
def
link screenComment Comment
...
...
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