From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Russ P." Newsgroups: gmane.emacs.help Subject: indentation (Indent More) Date: Sat, 11 Jul 2015 23:03:19 -0700 (PDT) Message-ID: <7f965313-0b25-4f31-afc5-caaa36f2486c@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1436704469 5690 80.91.229.3 (12 Jul 2015 12:34:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 12 Jul 2015 12:34:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 12 14:34:29 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZEGSj-0007gj-3S for geh-help-gnu-emacs@m.gmane.org; Sun, 12 Jul 2015 14:34:29 +0200 Original-Received: from localhost ([::1]:50658 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZEGSi-0000Tq-Fr for geh-help-gnu-emacs@m.gmane.org; Sun, 12 Jul 2015 08:34:28 -0400 X-Received: by 10.129.79.3 with SMTP id d3mr37077439ywb.37.1436680999808; Sat, 11 Jul 2015 23:03:19 -0700 (PDT) X-Received: by 10.50.36.6 with SMTP id m6mr2755igj.15.1436680999740; Sat, 11 Jul 2015 23:03:19 -0700 (PDT) Original-Path: usenet.stanford.edu!z61no398192qge.0!news-out.google.com!a16ni15470ign.0!nntp.google.com!qs7no4069440igc.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2602:30a:2c28:6b0:e073:f3eb:87a5:aa0e; posting-account=QXgf4wkAAADkKLOneY6DWJPpPelAjS0c Original-NNTP-Posting-Host: 2602:30a:2c28:6b0:e073:f3eb:87a5:aa0e User-Agent: G2/1.0 Injection-Date: Sun, 12 Jul 2015 06:03:19 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:213337 X-Mailman-Approved-At: Sun, 12 Jul 2015 08:34:19 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:105628 Archived-At: I recently decided to decrease my indentation from 4 spaces to 2 spaces (as recommended for Scala). I have the following in my .emacs file: (global-set-key "\t" 'tab-to-tab-stop) ; "normal" tab key (setq tab-stop-list '(2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36)) (setq-default indent-tabs-mode nil) (setq-default tab-width 2) It works fine, but when I try to use Edit/Text Properties/Indentation/Indent More it still adds 4 spaces. How can I change that to 2 spaces? Thanks