Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
5cfadeb0
Commit
5cfadeb0
authored
Jan 19, 2011
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc: update type + builtin lists found in editor support files
R=adg, dsymonds CC=golang-dev
https://golang.org/cl/4072041
parent
80e25fc9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
9 deletions
+4
-9
misc/bbedit/Go.plist
misc/bbedit/Go.plist
+0
-2
misc/fraise/go.plist
misc/fraise/go.plist
+0
-1
misc/kate/go.xml
misc/kate/go.xml
+1
-3
misc/vim/syntax/go.vim
misc/vim/syntax/go.vim
+3
-3
No files found.
misc/bbedit/Go.plist
View file @
5cfadeb0
...
...
@@ -15,7 +15,6 @@
chan
,
close
,
closed
,
cmplx
,
complex
,
complex128
,
complex64
,
...
...
@@ -27,7 +26,6 @@
else
,
fallthrough
,
false
,
float
,
float32
,
float64
,
for
,
...
...
misc/fraise/go.plist
View file @
5cfadeb0
...
...
@@ -70,7 +70,6 @@
<string>
chan
</string>
<string>
complex64
</string>
<string>
complex128
</string>
<string>
float
</string>
<string>
float32
</string>
<string>
float64
</string>
<string>
int
</string>
...
...
misc/kate/go.xml
View file @
5cfadeb0
...
...
@@ -42,10 +42,8 @@
<item>
bool
</item>
<item>
byte
</item>
<item>
chan
</item>
<item>
complex
</item>
<item>
complex64
</item>
<item>
complex128
</item>
<item>
float
</item>
<item>
float32
</item>
<item>
float64
</item>
<item>
int
</item>
...
...
@@ -67,7 +65,7 @@
<item>
cap
</item>
<item>
close
</item>
<item>
closed
</item>
<item>
c
mpl
x
</item>
<item>
c
omple
x
</item>
<item>
copy
</item>
<item>
imag
</item>
<item>
len
</item>
...
...
misc/vim/syntax/go.vim
View file @
5cfadeb0
...
...
@@ -70,8 +70,8 @@ hi def link goRepeat Repeat
syn
keyword goType chan map bool string
syn
keyword goSignedInts int int8 int16 int32 int64
syn
keyword goUnsignedInts byte uint uint8 uint16 uint32 uint64 uintptr
syn
keyword goFloats float
float
32 float64
syn
keyword goComplexes complex
complex
64 complex128
syn
keyword goFloats float32 float64
syn
keyword goComplexes complex64 complex128
hi
def link goType Type
hi
def link goSignedInts Type
...
...
@@ -85,7 +85,7 @@ syn match goType /\<func\>/
syn
match
goDeclaration
/^func\>/
" Predefined functions and values
syn
keyword goBuiltins append cap
close
closed c
mpl
x copy imag len
syn
keyword goBuiltins append cap
close
closed c
omple
x copy imag len
syn
keyword goBuiltins
make
new
panic print println real
recover
syn
keyword goConstants iota true false nil
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment