-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have text files with tables like this:
Investment advisory and
related fees receivable (161,570 ) (71,739 ) (73,135 )
Net purchases of trading
investments …
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am starting with emacs, and don't know much elisp. Nearly nothing, really.
I want to use ack as a replacement of grep.
These are the instructions I followed to use ack from within emacs:
http://www.rooijan.za.net/?q=ack_el
Now I don't like the output format that is used in this el file, I would…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My problem is I am opening a buffer using
(set-buffer (find-tag-noselect (current-word)))
and then I try to copy some text out of that buffer. The text that I get back has only the properties (fontified nil). find-tag-noselect automatically opens the buffer found in the TAGS file but it seems…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have the following dead simple elisp functions; the first removes the fill breaks from the current paragraph, and the second loops through the current document applying the first to each paragraph in turn, in effect removing all single line-breaks from the document. It runs fast on my low-spec…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hello
I have written few functions, which nearly identical, save for names. For example
; x is name, such as function/paragraph/line/etc.
(defun my-x-function
(interactive)
(mark-x) (do-more-stuff) (modify-x))
is there a way to put it automatically? I have a feeling this is what macros do,…
>>> More