Questions tagged [emacs23]

Version 23 of the GNU Emacs text editor.

Version 23 of the GNU Emacs text editor.

245 questions
5
votes
3 answers

share emacs configuration between emacs 23 and emacs 24

I'm trying to put all my emacs configuration under version control in order to easily switch between different computers. Actually my preferred system is OSX (10.8.3) with emacs 24.3 from http://emacsformacosx.com/. But I can also work in other…
Nicola Vianello
  • 1,916
  • 6
  • 21
  • 26
5
votes
2 answers

Proper handling of indentation of Java's @Override in emacs

If my .emacs is empty or if it contains only the lines (require 'cc-mode) (add-to-list 'c-offsets-alist '(annotation-top-cont .0)) (add-hook 'java-mode-hook '(lambda () (c-set-offset 'annotation-top-cont 0))) then instead of having…
Calaf
  • 10,113
  • 15
  • 57
  • 120
4
votes
1 answer

Emacs 23.3 lost all fonts

I've updated Emacs from 23.1 to 23.3 and it suddenly can no longer find my fonts (for example Liberation Mono). When I try to Options->Set Default Font... I'm prompted with a very bizarre choice of things some called using the format of "AxB", where…
user797257
4
votes
1 answer

Word wrap for Emacs print buffer to PDF

I use this function for printing a buffer's content to PDF (from my .emacs file:) (defun print-to-pdf () (interactive) (ps-spool-buffer-with-faces) (switch-to-buffer "*PostScript*") (write-file "/tmp/tmp.ps") (kill-buffer "tmp.ps") …
Werner
  • 261
  • 2
  • 8
4
votes
3 answers

Emacs Package Management

I used the package.el for emacs-23 file provided by technomancy on github and while I'm able to list the packages, whenever press "i" to install the package emacs simply moves the cursor to the next line. When I press "enter" on the package a new…
sjac
  • 2,811
  • 5
  • 23
  • 20
4
votes
3 answers

Emacs indent level global override

I want to set the indentation mode to tabs only, with a 4 character width for any mode. This seems like a trivial thing, but I have not had success. Every mode seems to have its own variables and options. I've tried doing this for Perl and R without…
goweon
  • 1,111
  • 10
  • 19
4
votes
1 answer

Disabling minor mode key bindings

I asked a question here, and got good responses, but the problem turned out to be different from what I had thought. I am trying to assign a certain function to the key "C-c" in shell mode, but it seems that a minor mode called tabbar-mode has a…
sawa
  • 165,429
  • 45
  • 277
  • 381
4
votes
6 answers

Emacs bookmark-jump: how to jump to bmark and only one of the split-windows changes contents?

I start with a file visible in one window; then i do a split-window, therefore now both windows show the same contents (at same buffer point). Now I want to jump to a different location in the file via a bookmark in only 1 of the 2 windows, but…
jd.
  • 4,543
  • 7
  • 34
  • 40
4
votes
2 answers

Emacs on Ubuntu. DIsplay issues: text displayed over other text

I'm a newbie to emacs, just starting to like it - but today upon start up the following issue has rendered it unusable. Problem: When I move the cursor forward some, but not all, characters are rendered unreadable. The next letter on the line is…
ben
  • 41
  • 2
4
votes
1 answer

In emacs, matching do and endo statements

Greetings, I am reviewing some code in the Gauss programming language. In it, loops can begin with do and end with endo? How do I see which endo matches which do. I want to see an outline of the structure of the code. What would be really cool is to…
stevejb
  • 2,414
  • 5
  • 26
  • 41
4
votes
3 answers

.emacs file (script) doesn't work

I've just installed new distribution of Ubuntu 10.10.2010, then installed emacs23, I installed also emacs goodies for color themes. I made the file .emacs in my home directory with the code: (require 'color-theme) (setq color-theme-is-global t) …
Ismail Marmoush
  • 13,140
  • 25
  • 80
  • 114
4
votes
1 answer

How do I change the color settings in emacs23 running in a terminal emulator?

I use xterm and set its appearance in ~/.Xdefaults: XTerm*background: paleTurquoise XTerm*foreground: black I also use emacs, but set its appearance differently in ~/.emacs: (set-background-color "black") (set-foreground-color…
4
votes
1 answer

Need Help Turning off re-align comments after signals in port list. (Verilog-Mode)

Here's my problem, I define a port list as so: module spi_jstk ( input clk, // System Clock (40MHz) input reset, // Async Reset input START, // Initialize SPI…
mrbean
  • 547
  • 5
  • 14
4
votes
1 answer

Emacs like line navigation in sublime text 3?

I have been using Emacs from past few months and I like its line navigation feature a lot as it does't need you to use arrow keys. Emacs Line Navigation: C-p : go to previous line C-n : go to next line C-f : go forward one character C-b : go…
Deepak
  • 1,503
  • 3
  • 22
  • 45
4
votes
1 answer

Emacs 23 uses character set four times larger than Unicode - why?

From Emacs 23.1 NEWS: *** The Emacs character set is now a superset of Unicode. (It has about four times the code space, which should be plenty). And more details later on: *** In multibyte buffers and strings, characters are represented by…
Laurynas Biveinis
  • 10,547
  • 4
  • 53
  • 66