This may be an odd question, but what does everyone use for an editor for the versioned puppet configs. Does everyone stick with vi or emacs and use the commandline svn tools? Or does anyone use eclipse, and if so what editor do you select for the puppet config files? I''ve been playing around with some of the different ones and haven''t really been able to find one that fits well. -- Matt Marshall ********************************************************************** NOTICE: This e-mail (and any attachments) may contain PRIVILEGED OR CONFIDENTIAL information and is intended only for the use of the specific individual(s) to whom it is addressed. It may contain information that is privileged and confidential under state and federal law. This information may be used or disclosed only in accordance with law, and you may be subject to penalties under law for improper use or further disclosure of the information in this e-mail and its attachments. If you have received this e- mail in error, please immediately notify the person named above by reply e- mail, and then delete the original e-mail. Thank you. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Vim all the way here. SVN from the CLI yes. Less is more. Regards. 2009/1/15 Matt Marshall <Marshall.Matt@azdeq.gov>> This may be an odd question, but what does everyone use for an editor for > the versioned puppet configs. Does everyone stick with vi or emacs and use > the commandline svn tools? Or does anyone use eclipse, and if so what editor > do you select for the puppet config files? I''ve been playing around with > some of the different ones and haven''t really been able to find one that > fits well. > > -- > > Matt Marshall > ------------------------------ > NOTICE: This e-mail (and any attachments) may contain PRIVILEGED OR > CONFIDENTIAL information and is intended only for the use of the specific > individual(s) to whom it is addressed. It may contain information that is > privileged and confidential under state and federal law. This information > may be used or disclosed only in accordance with law, and you may be > subject to penalties under law for improper use or further disclosure of > the > information in this e-mail and its attachments. If you have received this > e- > mail in error, please immediately notify the person named above by reply e- > mail, and then delete the original e-mail. Thank you. > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Vim here too.. Luke wrote a puppet.vim syntax highlighter on the wiki you can use for it, and I have a quickie little syntax parser I use as well: let project="" let compile_file="" augroup compile au! au bufenter *.pp nm ,'' :call CompilePuppet()<cr> augroup END fu! CompileFile() if g:project=="" let g:compile_file=expand("%") else let g:compile_file=g:project end endf fu! CompilePuppet() w! call CompileFile() exe "!/usr/bin/puppet --ignoreimport --parseonly ".g:compile_file "| more" endf On Jan 14, 7:14 pm, "Matt Marshall" <Marshall.M...@azdeq.gov> wrote:> This may be an odd question, but what does everyone use for an editor > for the versioned puppet configs. Does everyone stick with vi or emacs > and use the commandline svn tools? Or does anyone use eclipse, and if so > what editor do you select for the puppet config files? I''ve been playing > around with some of the different ones and haven''t really been able to > find one that fits well. > > ----~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
On Jan 20, 1:43 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote:> Vim here too.. Luke wrote a puppet.vim syntax highlighter on the wiki > you can use for it, and I have a quickie little syntax parser I use as > well: > > let project="" > let compile_file="" > > augroup compile > au! > au bufenter *.pp nm ,'' :call CompilePuppet()<cr> > augroup END > > fu! CompileFile() > if g:project=="" > let g:compile_file=expand("%") > else > let g:compile_file=g:project > end > endf > > fu! CompilePuppet() > w! > call CompileFile() > exe "!/usr/bin/puppet --ignoreimport --parseonly > ".g:compile_file "| more" > endf > > On Jan 14, 7:14 pm, "Matt Marshall" <Marshall.M...@azdeq.gov> wrote: > > > This may be an odd question, but what does everyone use for an editor > > for the versioned puppet configs. Does everyone stick with vi or emacs > > and use the commandline svn tools? Or does anyone use eclipse, and if so > > what editor do you select for the puppet config files? I''ve been playing > > around with some of the different ones and haven''t really been able to > > find one that fits well. > > > --What can be said? Vim is always the way to go... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 kevin wrote:> > > On Jan 20, 1:43 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: >> Vim here too.. Luke wrote a puppet.vim syntax highlighter on the wiki >> you can use for it, and I have a quickie little syntax parser I use asThere is a simple Wiki page on this: http://reductivelabs.com/trac/puppet/wiki/EditorTips Feel free to add and/or edit it. Regards James Turnbull - -- Author of: * Pulling Strings with Puppet (http://www.amazon.com/gp/product/1590599780/) * Pro Nagios 2.0 (http://www.amazon.com/gp/product/1590596099/) * Hardening Linux (http://www.amazon.com/gp/product/1590594444/) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFJdqV49hTGvAxC30ARAnNoAJwJwnzfNIXqX948u45OzPVoTmx93wCdGmep jd7HAiCzEFWtYxHNLAGf1D4=djOr -----END PGP SIGNATURE----- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
I use either Emacs or TextMate. I was hoping to use is Intellij IDEA but writing a plugin seems quite involved. On Jan 21, 12:32 pm, James Turnbull <ja...@lovedthanlost.net> wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > kevin wrote: > > > On Jan 20, 1:43 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: > >> Vim here too.. Luke wrote a puppet.vim syntax highlighter on the wiki > >> you can use for it, and I have a quickie little syntax parser I use as > > There is a simple Wiki page on this: > > http://reductivelabs.com/trac/puppet/wiki/EditorTips > > Feel free to add and/or edit it. > > Regards > > James Turnbull > > - -- > Author of: > * Pulling Strings with Puppet > (http://www.amazon.com/gp/product/1590599780/) > * Pro Nagios 2.0 > (http://www.amazon.com/gp/product/1590596099/) > * Hardening Linux > (http://www.amazon.com/gp/product/1590594444/) > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.7 (Darwin) > Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org > > iD8DBQFJdqV49hTGvAxC30ARAnNoAJwJwnzfNIXqX948u45OzPVoTmx93wCdGmep > jd7HAiCzEFWtYxHNLAGf1D4> =djOr > -----END PGP SIGNATURE-------~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---