-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update font lock keywords #8
Labels
Comments
I guess we know which editor they use in Puppet Labs... |
Here's some brilliant piece of code: (defvar puppet-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-j" 'newline-and-indent)
(define-key map "\C-m" 'newline-and-indent)
map)
"Key map used in puppet-mode buffers.") |
And here's a link to the relevant section of documentation for future reference http://docs.puppetlabs.com/puppet/3/reference/lang_reserved.html |
Pending PR for (some?) of this at puppetlabs/puppet-syntax-emacs#4 |
swsnr
added a commit
that referenced
this issue
Aug 18, 2013
@bbatsov I have thrown this precious gem away ;) |
Closed
Fixed in dc368df |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I noticed that some font lock keywords are missing, such as
require
in aclass
. We need to compile a comprehensive list of keywords and match it with the keywords in the mode.Geez! This mode is really in a pretty bad shape…
The text was updated successfully, but these errors were encountered: