| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 1 month |
| seen | 3 hours ago | |
| stats | profile views | 70 |
|
Mar 17 |
comment |
Emacs frames that fit the desktop (on either laptop or external monitor) The code you pointed to works out of the box and solves exactly the question I asked (though I prefer to use a height that depends on the height of the desktop alone, not on the size of the font). The additions are to maintain my current .emacs, which also caters for the case when I am on MS Windows. I'm not sure how others handle this, but I've found that it's too much of a hassle to maintain more than one .emacs file. It's better to spend a little extra time maintaining a single .emacs file than to constantly find out that some nice addition is in .emacs on one system but not the other. |
|
Mar 17 |
comment |
Emacs frames that fit the desktop (on either laptop or external monitor) My effort looks like it is even working :) |
|
Mar 17 |
comment |
Emacs frames that fit the desktop (on either laptop or external monitor) Thanks. I'm tinkering with it. So far it works for the initial frame, but the new frames have a smaller font and frame size. |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive But of course! Thanks!! |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive Writing something like FileMon is hardly a brief exercise. In that case I might as well write a C++ preprocessor with the added functionality, but I am still hoping that there is a simple solution--one, for example, that points out to the offending lines by just combining a few standard unix utilities. |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive This is just a little radical; wouldn't you say? All right, granted, I don't need to wipe my main disk and re-install the OS. It would be enough to use a USB flash drive, but is a software solution for this problem really so difficult? |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive @AdamLiss I'd like indeed to simulate case sensitivity. |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive @AndrewWhite Yes, absolutely. I am indeed looking for a way to make the build break even if I am on a system that is case insensitive. |
|
Mar 7 |
comment |
Simulating case sensitivity on a filesystem that isn't case sensitive I have now added an "Edit" section to clarify the question. |
|
Dec 22 |
comment |
PATH and exec-path set, but emacs does not find executable I am indeed on OSX, and loading PATH and exec-path from the shell would be very nice. Yet string-rtrim is not found (by neither emacs 22 nor 23). Is it your own function? |
|
Dec 22 |
comment |
Increasing the WYSIWYG-ness of Emacs Interesting idea, but that means learning yet a third typesetting syntax. To produce both html and latex, I have in the past used latex2html on a latex file. The output can then be fine-tuned by hand. It's not (or at least was not) perfect, but it worked. |
|
Dec 22 |
comment |
PATH and exec-path set, but emacs does not find executable That solves the gs problem, but there is now another problem, which seems related to the permissions of the file generated by gs. Let me ask that question separately. |
|
Dec 22 |
comment |
PATH and exec-path set, but emacs does not find executable After adding a terminating path separator (and restarting emacs) I still get the same error. |
|
Dec 22 |
comment |
Increasing the WYSIWYG-ness of Emacs With my .emacs containing only: (setenv "PATH" (concat ".:/usr/texbin:/opt/local/bin"))
(add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
(require 'tex-site)
(load "auctex.el" nil t t)
(load "preview-latex.el" nil t t)
I get
DviPS sentinel: Searching for program: no such file or directory, gs
even though gs is indeed in /opt/local/bin. |
|
Dec 22 |
comment |
Increasing the WYSIWYG-ness of Emacs Um.. what is there to export? So orgmode requires one to write a .org file to be able to parse a .tex file? That doesn't make sense. |
|
Dec 22 |
comment |
Increasing the WYSIWYG-ness of Emacs Adding (load "auctex.el" nil t t)
(load "preview-latex.el" nil t t)
to my .emacs (as mentioned in the manual), loading a .tex file, and pressing C-c C-p C-p doesn't work. Any suggestions for the seed recipe to get started on this (apparently powerful but monstrous) package? |
|
Dec 15 |
comment |
Emacs as Finder/Explorer — copy files Answer is a bit cryptic, but helpful nevertheless. To do what I describe in the question, it is enough to add (setq dired-dwim-target t) to one's .emacs. Calling dired-do-copy ('C') will then suggest the other directory displayed. |
|
Dec 15 |
comment |
Emacs as Finder/Explorer — copy files The number of keystrokes is excessive. I use emacs dired instead of Finder, and the target directory changes so using the secondary selection is not suitable. I am looking for copy-to-other-dired-buffer command. Does one exist? |
|
Dec 10 |
comment |
Maintaining aspect ratio of image inside a square html element Turning the list items into a clickable area the same height as the image looks quite bad. It's also a bit of a trap for accidental clicking. |
|
Dec 9 |
comment |
a:hover affects text hyperlinks, but not img hyperlinks Perfect... thanks. |