Recommendations for emacs customizations for editing Perl

2012-09-11 Thread Vic Sage
I'd like to hear some recommendations from this list for customizations to emacs for coding Perl.One seemingly respected site, http://emacswiki.org/emacs/PerlLanguage, has a lot of links but unfortunately some are pretty dated.  For example, the Perl Develop Environment, http://search.cpan.org/dist

Re: Recommendations for emacs customizations for editing Perl

2012-09-11 Thread Vic Sage
On Sep 11, 2012, at 10:24 PM, John SJ Anderson wrote: > Well, there's the 'Tweakers Anonymous' talk I gave at YAPC… > > * slides: http://www.slideshare.net/genehackdotorg/tweakers-anonymous-13313552 > * video: http://www.youtube.com/watch?v=A3_lY-zlzik Okay - good points to keep in mind. > > T

Re: Recommendations for emacs customizations for editing Perl

2012-09-12 Thread Vic Sage
On Sep 11, 2012, at 11:45 PM, Shlomi Fish wrote: > Hi pangj, > > On Wed, 12 Sep 2012 12:28:54 +0800 > pangj wrote: > >> Have been coding perl with VIM always. >> > > Good for you, but the original question was about Emacs and it is a legitimate > question. I had no idea how popular Vi/Vim

Re: Recommendations for emacs customizations for editing Perl

2012-09-12 Thread Vic Sage
On Sep 12, 2012, at 5:59 AM, Paul Anderson wrote: > Install PDE from CPAN and it'll work alright. It works fine for me on 5.16.1. So it does. I was concerned that PDE hadn't been updated in four years. But I gather it works well with all the recent syntax? V -- To unsubscribe, e-mail:

Line-oriented socket I/O using select()

2013-01-13 Thread Vic Sage
I'm writing a multiplexed TCP-based server that reads "\n"-terminated strings from clients and does something with them. Since this is one process with multiple client connections, it uses select() (or, actually, can_read from IO::Select) to block until data has arrived from any client. It's m

Re: Line-oriented socket I/O using select()

2013-01-14 Thread Vic Sage
On Jan 13, 2013, at 8:35 PM, Charles DeRykus wrote: > On Sun, Jan 13, 2013 at 3:03 PM, Vic Sage wrote: >> >> What I *want* is to block until an entire "\n"-terminated string [can that >> be referred to as a "line"?] can be retrieved from one of my cl