From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tak Kunihiro Newsgroups: gmane.emacs.help Subject: Re: Feeling lost without tabs Date: Sun, 20 Jul 2014 14:22:54 +0900 (JST) Message-ID: <20140720.142254.1813241685715536847.tak.kunihiro@gmail.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1405833820 656 80.91.229.3 (20 Jul 2014 05:23:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 20 Jul 2014 05:23:40 +0000 (UTC) Cc: tak.kunihiro@gmail.com To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 20 07:23:33 2014 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 1X8jau-0000w5-Dr for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Jul 2014 07:23:32 +0200 Original-Received: from localhost ([::1]:56442 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X8jat-0003Xi-SG for geh-help-gnu-emacs@m.gmane.org; Sun, 20 Jul 2014 01:23:31 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X8jab-0003Vh-3G for help-gnu-emacs@gnu.org; Sun, 20 Jul 2014 01:23:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X8jaS-0002qK-25 for help-gnu-emacs@gnu.org; Sun, 20 Jul 2014 01:23:13 -0400 Original-Received: from mail-pa0-x234.google.com ([2607:f8b0:400e:c03::234]:46059) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X8jaR-0002py-QC for help-gnu-emacs@gnu.org; Sun, 20 Jul 2014 01:23:03 -0400 Original-Received: by mail-pa0-f52.google.com with SMTP id bj1so7797490pad.39 for ; Sat, 19 Jul 2014 22:23:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:message-id:to:cc:subject:from:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=7tRzhibli+WSEj0pgmek3cYMsfXf3b1GGNaW7qPDjZg=; b=s5pODrZrH6Wxlyje1vmmfcj0a0A4waV6ANys15BQuGPOQoklvA8VWL6KoHcoIqb34v otCElIoyz2BnI7CiFwIiWOBOZXzRtkx/0m+nyLL1F6jgohpRJ0PnZ/3zowPZMzOkTuic Rn7PLiIh6ztFHfesdZokKvfi07NPTkuIpmNBTSYxkbidP3w922tRwLfjPUrMLiU7Peht /5ZTsCjvYsKOW41LI+e3KsQzPTHK4b5KVlgvIKWDG87EGE5ygAdQhiCIYnICxr82CsOc Vl2qF2albwpT845KuNJXxbEsq6/Dvmpuc/Hso9tR9NV87kB+QlWJgqgZ/h5xh4tHF6ya R73g== X-Received: by 10.70.123.231 with SMTP id md7mr16304955pdb.67.1405833782790; Sat, 19 Jul 2014 22:23:02 -0700 (PDT) Original-Received: from localhost (vesta.misasa.okayama-u.ac.jp. [150.46.48.154]) by mx.google.com with ESMTPSA id y3sm13760526pdy.27.2014.07.19.22.23.01 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 19 Jul 2014 22:23:02 -0700 (PDT) In-Reply-To: X-Mailer: Mew version 6.6 on Emacs 24.3 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::234 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:98813 Archived-At: > I know C-x C-b pops it up, but involves multiple keys and it also > takes a a lot of screen real estate. I make a narrow window on left-hand side and have buffer-menu. I recommend to make the window dedicated and remember, the window is dedicated by you. (defun buffer-menu-left () "Open buffer-menu at the left-hand side" (interactive) (split-window-horizontally 30) (buffer-menu t) (set-window-dedicated-p (selected-window) t))