Live data from Hacker News

Emacs 24.4 released

lists.gnu.org

91–100 of 177 posts

Re: Emacs 24.4 released

#91

I think this thread is my best shot at getting this question answered.. I've been using Emacs 23.x for the last several years because the buffer-switcher behavior changed in Emacs 24 and I have no idea how (or if it's even possible) to get the previous behavior back? In Emacs 23 and below (for as long as I've used Emacs), I would change buffers by hitting F10-b (F10 brings up menu, b is shortcut for Buffers). Then th…

I may be missing something, but try C-x b instead of F-10 b

Re: Emacs 24.4 released

#92

In Ubuntu I'm unable to activate orgtbl-mode unless I first switch to org-mode. This didn't happen with Emacs 23. Has anybody experienced the same? How can I check if this has been reported? Thanks. Edit: Seriously, people? You take the time to downvote and not to point in a direction to contribute to make Emacs better? So much for the attacks on Stack Overflow and its strict policies and policing... And anyway, how…

How'd you get Emacs 24.4 on Ubuntu? Is there a PPA or did you compile from source?

Re: Emacs 24.4 released

#93

In Ubuntu I'm unable to activate orgtbl-mode unless I first switch to org-mode. This didn't happen with Emacs 23. Has anybody experienced the same? How can I check if this has been reported? Thanks. Edit: Seriously, people? You take the time to downvote and not to point in a direction to contribute to make Emacs better? So much for the attacks on Stack Overflow and its strict policies and policing... And anyway, how…

Try adding (require 'org-table) to your .emacs. My guess is that you only have (require 'org-install) or something like that currently. (Running the org-mode function will load several org libraries, including org-table, if they aren't loaded already, which is why orgtbl-mode does work after the first use of org-mode in the setup I'm guessing you have.)

Re: Emacs 24.4 released

#94

I think this thread is my best shot at getting this question answered.. I've been using Emacs 23.x for the last several years because the buffer-switcher behavior changed in Emacs 24 and I have no idea how (or if it's even possible) to get the previous behavior back? In Emacs 23 and below (for as long as I've used Emacs), I would change buffers by hitting F10-b (F10 brings up menu, b is shortcut for Buffers). Then th…

Why not use C-x b ?

Re: Emacs 24.4 released

#95
post #65

I'm a comparative youngin to most of the people here, and I've never tried emacs. I'd like to learn my way around it someday, but I don't know how high of a priority I should place on it. I've managed to pick up enough vim to make my life easier, would learning my way around emacs also get me a productivity boost? How good is evil mode?

I spent a couple of years using vim before switching to emacs around 3 years ago. I'll write about my own experience with both editors. Learning emacs won't automatically give you a huge productivity boost the way learning vim does. Vim is this blazing fast editor; it's been designed from the ground up to be good at editing text. If your goal is to increase your productivity, I'd say invest time learning vim advanced…

What do you use to evaluate python? Does it work with ipython under some sort of inferior mode?

And what do you use for code review workflows?

Re: Emacs 24.4 released

#96
post #78
post #65

I'm a comparative youngin to most of the people here, and I've never tried emacs. I'd like to learn my way around it someday, but I don't know how high of a priority I should place on it. I've managed to pick up enough vim to make my life easier, would learning my way around emacs also get me a productivity boost? How good is evil mode?

I would say that learning your IDE or editor well is a worthwhile investment, whether that is emacs, vim, or a more rich IDE like Eclipse. Vim or Emacs are really powerful tools that will serve you well over your entire career, so getting adept at them will pay dividends. It's similar to learning how to touch-type, or typing with a faster WPM, in that it's not a pre-requisite to becoming a good and productive develop…

Happy to see others mentioning eclipse. I'm learning emacs now and it impresses me a lot but I also have happy memories from both Eclipse and NetBeans.

The way you can refactor whole projects at once etc is amazing. (This is partly related to Java being static and uncool as well. : )

Re: Emacs 24.4 released

#97

I think this thread is my best shot at getting this question answered.. I've been using Emacs 23.x for the last several years because the buffer-switcher behavior changed in Emacs 24 and I have no idea how (or if it's even possible) to get the previous behavior back? In Emacs 23 and below (for as long as I've used Emacs), I would change buffers by hitting F10-b (F10 brings up menu, b is shortcut for Buffers). Then th…

I may be missing something, but try C-x b instead of F-10 b

That's slightly different. It will prompt for a buffer name, which you can type in and tab-complete, but it's not quite as fast as the one-key switching (also it doesn't show a list of buffers unless you try to tab-complete while the prompt is empty).

Re: Emacs 24.4 released

#98

I think this thread is my best shot at getting this question answered.. I've been using Emacs 23.x for the last several years because the buffer-switcher behavior changed in Emacs 24 and I have no idea how (or if it's even possible) to get the previous behavior back? In Emacs 23 and below (for as long as I've used Emacs), I would change buffers by hitting F10-b (F10 brings up menu, b is shortcut for Buffers). Then th…

Have you tried ido mode? Ido-switch-buffer works nicely and it can be customized.

Re: Emacs 24.4 released

#99
Building on OSX Mavericks (assuming XCode and XQuartz already around)

1) Download from http://www.gnu.org/software/emacs/

   emacs-24.4.tar.gz

   emacs-24.4.tar.gz.sig
2) Confirm:

   gpg --keyserver pgp.mit.edu --recv-keys A0B0F199

   gpg --verify emacs-24.4.tar.gz.sig
3) Build (from INSTALL):

   cd emacs-24.4

   ./configure  --with-jpeg=no --with-gif=no --with-tiff=no

   make

   src/emacs -Q 

   make install
4) run:

   /usr/local/bin/emacs
Post reply on HN