HN user

kindahero

55 karma
Posts4
Comments17
View on HN

Oh I know the pain, I did the same back in 2015. That was my first scientific paper ever. Then "never again" said to myself. Now I use pure latex. org-mode is only good for quick exports should not think it as an alternative to latex.

Actually, auto-complete was written by Matsuyama (original author this article), though tkf has contributed to the project.

> My emacs at times can't keep up with my typing. But I love what it does for me.

Try to set debugger on (M-x toggle-debug-on-quit) and when emacs stops responding press C-g to get to know what was emacs doing.

Org is very active, high profile project, the number of changes from previous major release are just amazing.

git diff release_7.01 release_8.0 --stat [snip] 352 files changed, 119010 insertions(+), 80849 deletions(-)

Emacs-24.3 released 13 years ago

From the last release (8 months ago) 2519 files changed, 203613 insertions(+), 124051 deletions(-)

Incredible to see how much work has put into Emacs development.

> but I feel like it need to be forked and gutted.

There is Xemacs FYI..

> Including more shit each release is not justifiable.

Maintainers have indeed plans to split the packages out of the core, as the package manager is already up and running..

> Vim is as extensible as Emacs. I won't debate how elisp is better or worse than Vimscript, because that doesn't affect extensibility.

If we agree with "extensibility depends on how much/many internals exposed to its extensible language", I would say Emacs is more extensible than Vim in comparison to their current status.

Agian It doesn't mean Emacs is better or worse than Vim. I think we are heading to endless discussion. I will stop here.

I dont know about multiple cursors., but I use scrolling all the time

  (global-set-key "\M-n" "\C-u1\C-v") 
  (global-set-key "\M-p" "\C-u1\M-v")