2
votes
1answer
76 views

EMACS custom-indention function for a symbol rather than a symbolic expression?

CLIPS and JESS are lispy languages used for AI and rules-engines. Their EMACS are derived from lisp-mode. The most important form to format correctly is defrule, it helps for readability. By default ...
1
vote
2answers
120 views

How can I get emacs to indent html chunks between php control constructs?

I have tried every php/html mode (including nxHTML) I can find, but can't find a mode that indents the way I want. Here is an example of what my files contain: <?php if (a == 5): ?> ...
2
votes
1answer
179 views

Emacs C++ mode indentation [duplicate]

Possible Duplicate: Make Emacs less aggressive about indentation Whenever I type and open or closed parenthesis in Emacs' C++ mode it indents the entire expression. I do not want this to ...
0
votes
1answer
202 views

Python indentation in Emacs

Boring of googling this question - how to set indentation offset for python in emacs? Tried many variants, but none helps. http://jomp.ru/@s.png - python mode?
0
votes
1answer
87 views

Make Emacs indent code in every possible situation

I can't seem to get Emacs to just use Tab for indentation. I set c-tab-always-indent and tab-always-indent to true, but still I have to use C-q Tab to indent a line of code. What do I need to do to ...
0
votes
1answer
172 views

C++ style in emacs : greater-than-80 column exception to the default parentheses auto-indent behavior

I have a long function declaration in C++ that I'm writing up in emacs. The indentation behavior with parenthesis doesn't make an exception for 80 columns and looks like: ...
6
votes
2answers
361 views

How do I make emacs treat #ifdef and #endif like '{' and '}'?

I'd like emacs to treat "#ifdef" exactly like "{" and "#endif" like "}" in relation to indentation. Like so: #ifdef __linux__ #include <sys/socket.h> #endif int func(void) { int foo = ...
5
votes
2answers
558 views

Scala mode indentation in Emacs

When writing Scala code in Emacs, I notice the following indentation issue: List(1,2,3).foreach{ x => Then press enter. Then close the bracket, and this is what ends up happening: ...
4
votes
3answers
423 views

Emacs: different tab indent settings in different modes

I'm currently using whitespace-cleanup in my save hook. Using indent-tabs-mode, I'm able to save files without any tabs. All is well, I don't want tabs in my files. But. Makefiles do need tabs. That ...
0
votes
1answer
455 views

Emacs indentation for switch…case statements

Indentation in Emacs always works, but I face some questions about switch - case statements. For example, switch (x) { case 'A': case 'B': printf("hello"); printf(...); printf(...); break; } ...
4
votes
2answers
648 views

aligning or prettifying code in emacs

I remember this was possible in emacs, but don't know how. If I have something like: 'abc' => 1, 'abcabc' =>2, 'abcabcabc' => 3, How can I align the keys, arrows and values to something like ...
3
votes
1answer
210 views

Emacs indent an extra level for every continued line

How do you tell emacs to indent the current continued line (e.g. after a dot or indirection operator) one level deeper than the previous one? Arguments about which one is prettier are irrelevant here ...
2
votes
1answer
2k views

Disable auto indent globally in Emacs

How to disable auto indent in Emacs globally or only for some modes? I have a number of packages installed for RubyOnRails (ruby, html, js, css). Let's say I want to disable autoindent for ...
6
votes
2answers
839 views

Emacs custom indentation

My team uses a special type of file for configuration, and I would like to auto-indent (block indent) the file using emacs. I would like to increase the indentation by a tab size for an opening ...
2
votes
3answers
2k views

Vim - indent like Emacs

I use vim (primary so that I can work on plain ssh terminal - still uncomfortable with Emacs non-gui version) but most of my colleagues in the organization use emacs. So using CVS, we face indentation ...
1
vote
1answer
109 views

I think this is a bug in emacs indent mode

I happened to be writing something like this: int main( int nargs, char **args ) { int i, j; if ( i > 0 && NEAR( i-1, j ).dist == INFINITY ) { NEAR( i-1, j ).dist = ...
8
votes
1answer
1k views

like-vim emacs ruby indentation

ruby-mode from svn, looks equal to 1.1 version here is emacs indentation of hash User.all({ :joins => :account, :conditions => {:delete_at => nil} }) here is the same ...
4
votes
2answers
560 views

Make Emacs less aggressive about indentation

Emacs reindents the current line whenever I type certain things, like ";" or "//". This is pretty annoying, since there are a whole lot of places where it isn't smart enough to indent correctly. How ...
6
votes
2answers
1k views

Any Emacs command like paste-mode in vim?

When i'm trying to paste some code from browser to Emacs, it will indent code automatically, is there any way to stop Emacs from indenting temporarily like :set paste in vim?
63
votes
14answers
42k views

Set 4 Space Indent in Emacs in Text Mode

I've been unsuccessful in getting Emacs to switch from 8 space tabs to 4 space tabs when pressing the TAB in buffers with the major mode text-mode. I've added the following to my .emacs: ...