Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
87229f54
Commit
87229f54
authored
Aug 26, 2010
by
Scott Lawrence
Committed by
Russ Cox
Aug 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc/emacs: make _ a word symbol
Fixes #655. R=rsc, aclements CC=golang-dev
https://golang.org/cl/1981041
parent
ec72f9bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
go-mode.el
misc/emacs/go-mode.el
+2
-2
No files found.
misc/emacs/go-mode.el
View file @
87229f54
...
@@ -27,8 +27,8 @@
...
@@ -27,8 +27,8 @@
(
defvar
go-mode-syntax-table
(
defvar
go-mode-syntax-table
(
let
((
st
(
make-syntax-table
)))
(
let
((
st
(
make-syntax-table
)))
;;
Symbol
s
;;
Add _ to :word: character clas
s
(
modify-syntax-entry
?_
"
_
"
st
)
(
modify-syntax-entry
?_
"
w
"
st
)
;; Operators (punctuation)
;; Operators (punctuation)
(
modify-syntax-entry
?+
"."
st
)
(
modify-syntax-entry
?+
"."
st
)
...
...
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