ซ่อนประกาศลิขสิทธิ์ GPL ที่ยาวที่ด้านบนของไฟล์


10

ฉันกำลังทำงานกับไฟล์ * cpp และ * h จำนวนมากซึ่งมีการแจ้งเตือนลิขสิทธิ์ที่มีความยาวตั้งแต่ต้น ฉันต้องการ emacs ที่จะแสดงไฟล์เหล่านี้ราวกับว่ามันไม่ได้อยู่ที่นั่นโดยไม่ต้องลบข้อความจริง

นั่นคือสิ่งนี้:

/*
 * Copyright (C) 2006-2008 Author A
 * Copyright (C) 2006-2008 Author B
 * Copyright (C) 2006-2008 Author C
 * Copyright (C) 2006-2008 Author D
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * As a special exception, you may use this file as part of a free
 * software library without restriction. Specifically, if other files
 * instantiate templates or use macros or inline functions from this
 * file, or you compile this file and link it with other files to
 * produce an executable, this file does not by itself cause the
 * resulting executable to be covered by the GNU General Public
 * License. This exception does not however invalidate any other
 * reasons why the executable file might be covered by the GNU Library
 * General Public License.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

 #ifndef FILENAME
 #define FILENAME
 ...

ควรมีลักษณะเช่นนี้

#ifndef FILENAME
#define FILENAME
...

คำตอบ:


13

Emacs มาพร้อมกับelide-head.elสิ่งที่คุณต้องการ

ที่จะใช้มันเพิ่มelide-headไปที่เบ็ดโหมดหลักหรือfind-file-hook(ในกรณีของคุณc-mode-common-hookควรจะทำงาน) มันสามารถซ่อนความคิดเห็นใบอนุญาต GPL ออกจากกล่อง; เพื่อซ่อนหัวยาวอื่น ๆ elide-head-headers-to-hideที่ปรับแต่ง

โปรดทราบว่ามันไม่ได้ซ่อนเพียงความคิดเห็นใด ๆ ที่ด้านบนของบัฟเฟอร์ แต่ใช้การแสดงออกปกติเพื่อให้ตรงกับจุดเริ่มต้นและจุดสิ้นสุดของใบอนุญาต


1
ฉันชอบคำสั่งนี้ ดีมาก.
Tu Do

เอาชนะฉันทุกครั้ง เมื่อใดก็ตามที่ผมเขียนอะไรบางอย่างที่มีคนอื่นที่คิดว่ามันเป็นครั้งแรก :)
wvxvw

12

นี่เป็นวิธีหนึ่งในการทำเช่นนั้น:

เพิ่มลงในไฟล์ init ของคุณ:

(defun hide-banner ()
  (save-excursion
    (let* ((start (progn (beginning-of-buffer) (point)))
           (end (progn (forward-comment (buffer-size)) (point)))
           (over (make-overlay start end)))
      (overlay-put over 'invisible t))))

ในบัฟเฟอร์ที่คุณต้องการซ่อนความคิดเห็นเริ่มต้นเพิ่ม:

// -*- eval: (hide-banner) -*-

หรือเพิ่มรหัสเดียวกันลงในบัฟเฟอร์ของ hook หรือคุณสามารถเปลี่ยนวิธีการระบุความคิดเห็นที่คุณต้องการซ่อนได้ (ถ้าคุณต้องการให้หยิบ#ifndef / #defineคู่ขึ้นมาคุณจะต้องแก้ไขhide-bannerฟังก์ชั่นเพื่อค้นหาแทนความคิดเห็นแรกจบ


Works! มันดีขึ้นมากขอบคุณ ในกรณีที่ร่างกายต้องการสิ่งนี้นี่คือตะขอของฉัน:(add-hook 'c-mode-common-hook 'hide-banner)
เริ่มต้น
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.