all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: editing large files
       [not found] <mailman.12184.1129935330.20277.help-gnu-emacs@gnu.org>
@ 2005-10-21 23:23 ` Pascal Bourguignon
  2005-10-22  7:38 ` David Kastrup
  2005-10-22  9:28 ` Tim X
  2 siblings, 0 replies; 6+ messages in thread
From: Pascal Bourguignon @ 2005-10-21 23:23 UTC (permalink / raw)


Sebastian Luque <spluque@gmail.com> writes:

> Hi,
>
> I need to edit some relatively large files (~ 200 Mb), so I'm exceeding
> the maximum buffer size allowed by my Emacs (GNU Emacs 21.4.1
> (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2005-10-02 on
> trouble, modified by Debian).  Searching for solutions it seems that the
> only way to do this would be to use a 64-bit machine and Emacs.  Is this
> correct?  What alternatives are people using on a 32-bit machine?

split;emacs;cat

-- 
__Pascal Bourguignon__                     http://www.informatimago.com/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: editing large files
       [not found] <mailman.12184.1129935330.20277.help-gnu-emacs@gnu.org>
  2005-10-21 23:23 ` editing large files Pascal Bourguignon
@ 2005-10-22  7:38 ` David Kastrup
  2005-10-22  9:28 ` Tim X
  2 siblings, 0 replies; 6+ messages in thread
From: David Kastrup @ 2005-10-22  7:38 UTC (permalink / raw)


Sebastian Luque <spluque@gmail.com> writes:

> I need to edit some relatively large files (~ 200 Mb), so I'm exceeding
> the maximum buffer size allowed by my Emacs (GNU Emacs 21.4.1
> (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2005-10-02 on
> trouble, modified by Debian).  Searching for solutions it seems that the
> only way to do this would be to use a 64-bit machine and Emacs.  Is this
> correct?  What alternatives are people using on a 32-bit machine?

emacs-snapshot has a max buffer size of 256MB, xemacs of 1GB (IIRC).

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: editing large files
       [not found] <mailman.12184.1129935330.20277.help-gnu-emacs@gnu.org>
  2005-10-21 23:23 ` editing large files Pascal Bourguignon
  2005-10-22  7:38 ` David Kastrup
@ 2005-10-22  9:28 ` Tim X
  2005-10-22 16:56   ` Sebastian Luque
       [not found]   ` <mailman.12242.1130000339.20277.help-gnu-emacs@gnu.org>
  2 siblings, 2 replies; 6+ messages in thread
From: Tim X @ 2005-10-22  9:28 UTC (permalink / raw)


Sebastian Luque <spluque@gmail.com> writes:

> Hi,
> 
> I need to edit some relatively large files (~ 200 Mb), so I'm exceeding
> the maximum buffer size allowed by my Emacs (GNU Emacs 21.4.1
> (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2005-10-02 on
> trouble, modified by Debian).  Searching for solutions it seems that the
> only way to do this would be to use a 64-bit machine and Emacs.  Is this
> correct?  What alternatives are people using on a 32-bit machine?
> 
> 

For large files, I usually just split them up, do my editing and then
join them back together again. If the changes I need to make are
repetitive or fairly easily specified in a programatic fashion, I just
use sed.

Tim


-- 
Tim Cross
The e-mail address on this message is FALSE (obviously!). My real e-mail is
to a company in Australia called rapttech and my login is tcross - if you 
really need to send mail, you should be able to work it out!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: editing large files
  2005-10-22  9:28 ` Tim X
@ 2005-10-22 16:56   ` Sebastian Luque
       [not found]   ` <mailman.12242.1130000339.20277.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 6+ messages in thread
From: Sebastian Luque @ 2005-10-22 16:56 UTC (permalink / raw)


Tim X <timx@spamto.devnul.com> wrote:

[...]

> For large files, I usually just split them up, do my editing and then
> join them back together again. If the changes I need to make are
> repetitive or fairly easily specified in a programatic fashion, I just
> use sed.

Thanks to all of you for your suggestions.  Indeed, I ended up using AWK,
since they were all comma-delimited files (tables).


Cheers,

-- 
Sebastian P. Luque

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Indenting in HTML mode
       [not found]   ` <mailman.12242.1130000339.20277.help-gnu-emacs@gnu.org>
@ 2005-10-23  5:36     ` Tyler
  2005-10-24 11:59       ` Anselm Helbig
  0 siblings, 1 reply; 6+ messages in thread
From: Tyler @ 2005-10-23  5:36 UTC (permalink / raw)


Hi,

I'm trying to edit an HTML file, and I am unable to indent lines with 
the tab key. The only thing that I've managed to make work is to mark a 
region, then C-x tab to indent that region by 1 space. Also, on text I 
have yanked into the file from the clipboard I can tab as expected. 
However, all the text I entered directly into Emacs is 'protected' from 
tabbing. What am I doing wrong?

Thanks,

Tyler

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Indenting in HTML mode
  2005-10-23  5:36     ` Indenting in HTML mode Tyler
@ 2005-10-24 11:59       ` Anselm Helbig
  0 siblings, 0 replies; 6+ messages in thread
From: Anselm Helbig @ 2005-10-24 11:59 UTC (permalink / raw)


At Sun, 23 Oct 2005 01:36:36 -0400,
Tyler <tyler.smith@mail.mcgill.ca> wrote:
> 
> I'm trying to edit an HTML file, and I am unable to indent lines with 
> the tab key. The only thing that I've managed to make work is to mark a 
> region, then C-x tab to indent that region by 1 space. Also, on text I 
> have yanked into the file from the clipboard I can tab as expected. 
> However, all the text I entered directly into Emacs is 'protected' from 
> tabbing. What am I doing wrong?

What html-mode are you using? I assume you are using
html-helper-mode. This mode only seems to indent lists, selects and
tables. Modes which handle the indentation of other elements properly
are psgml-mode and nxml-mode, maybe you should try one of those. They
are not yet part of emacs, though. 

Regards, 

Anselm

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-10-24 11:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.12184.1129935330.20277.help-gnu-emacs@gnu.org>
2005-10-21 23:23 ` editing large files Pascal Bourguignon
2005-10-22  7:38 ` David Kastrup
2005-10-22  9:28 ` Tim X
2005-10-22 16:56   ` Sebastian Luque
     [not found]   ` <mailman.12242.1130000339.20277.help-gnu-emacs@gnu.org>
2005-10-23  5:36     ` Indenting in HTML mode Tyler
2005-10-24 11:59       ` Anselm Helbig

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.