Emacs के लिए ब्राउज़र-शैली 'टैब'?


22

मैं फ़ायरफ़ॉक्स की तरह टैब चाहूंगा लेकिन emacs के लिए।

मुझे यह मिला: http://emacswiki.org/emacs/TabBarMode

लेकिन यह सिर्फ प्रत्येक बफर ( Emacs शब्दावली में खिड़की ) को एक बार में जोड़ता है जो वर्तमान में खुले बफ़र्स दिखाता है।

मैं चाहूंगा कि एक टैब कई बफ़र्स ( विंडोज़) रखने में सक्षम हो Emacs teminology में ) , जिसे मैं वांछित रूप से विभाजित कर सकता हूं। यानी प्रत्येक टैब को "विंडो स्थिति" (अर्थ में window-state-get) के अनुरूप होना चाहिए ।

मुझे अपने कार्यों के लिए एक टैब, कोड के लिए एक और वेब-रीडिंग आदि के लिए एक और टैब मिलेगा।

क्या यह संभव है? क्या टैब्बर ऐसा करने के लिए अनुरूप हो सकता है?

[EDIT2]
यह सवाल मैंने प्रत्याशित की तुलना में अधिक ध्यान आकर्षित किया है। ऐसा लगता है कि एक समाधान है, लेकिन एक है कि अनुसंधान और tweaking के एक बिट की आवश्यकता होगी। हालांकि यह / अगले सप्ताह मेरे लिए थोड़ा व्यस्त हैं, मैं उत्तरों के माध्यम से पार्स करूंगा और कुछ ऐसा बनाने की कोशिश करूंगा जो काम करता है और फिर मैं अपने निष्कर्षों को प्रतिबिंबित करने के लिए इस प्रश्न को संपादित करूंगा। कृपया पकड़ें =)

[संपादित करें]
के समान:
/programming/24157754/make-frames-in-emacs-gui-behaves-like-frames-in-terminal

मैं एक ही जीयूआई सत्र में कई फ्रेम के साथ समझौता करूंगा।


2
"मैं चाहूंगा कि एक टैब कई बफ़र्स को रखने में सक्षम हो, जिसे मैं वांछित रूप से विभाजित कर सकता हूं।" क्या आपका मतलब है कई खिड़कियां ?
मालाबार

1
यह अधिक है जैसे मैं बहुत dyanmic टैब है चाहूँगा। मैं उन्हें बनाता और फिर उन्हें खिड़कियों से आबाद करता। यानी मैं एक फ्रेम बनना चाहता हूं। फिर एक नया टैब एक नया फ्रेम। प्रत्येक टैब / फ़्रेम के अंदर मैं वांछित विंडो / (बफ़र्स) खोल सकता था। क्या यह करने योग्य है? (यानी, कोई हार्ड-कोडेड बफ़र नाम आदि नहीं।)
लियो उफिम्त्सेव

1
एक विशेष विंडो से जुड़ा एक चर है, लेकिन एक या दो महीने हो गए हैं क्योंकि मैंने एक धागा देखा है जो इसके बारे में बात करता है और मुझे नहीं पता कि इसे ऑफ-हैंड कहा जाता है। आप फ़्रेम-बफ़्स के समान एक सिस्टम का उपयोग करने में रुचि रख सकते हैं जहां एक सूची फ्रेम से जुड़े बफ़र्स रखती है और उस सूची को फ़्रेम पैरामीटर में शामिल किया जाता है। आप एक विशेष विंडो के साथ जुड़े चर का उपयोग कर सकते हैं और इसे एक सूची बना सकते हैं, सूची से बफ़र्स जोड़ सकते हैं / हटा सकते हैं - यह सूची एक टैब-समूह होगी जिसका उपयोग टैबबार द्वारा किया जाएगा। यह सब सैद्धांतिक है, लेकिन मेरा मानना ​​है कि यह काम करेगा।
कानून

1
मुझे लगता है कि आप इसका उल्लेख कर सकते हैं: stackoverflow.com/questions/24157754/… लेकिन उस पोस्ट का कोई ठोस जवाब नहीं लगता है: - /
लियो यूफिमेटसेव

1
मैं एल्कैन पैकेज पर एक नज़र डालने की सलाह दूंगा।
blarghmatey

जवाबों:


8

समूहों में विभाजित बफ़र

यह टैब्बर के साथ संभव है। आप समूहों में समूह बफ़र्स के लिए नियम जोड़ सकते हैं। यहाँ एक बुनियादी स्निपेट है:

(defun tabbar-buffer-groups ()
  "Returns the list of group names the current buffer belongs to."
  (list
   (cond

    ;; ADD RULES TO SPLIT BUFFERS IN GROUPS HERE!

    ;; if buffer is not grouped by the rules you would add above 
    ;; put it in the "General" group:
    (t
       "General"
     ))))

उदाहरण के नियम:

  1. सूची बफ़र नाम:
    ((member (buffer-name)
             '("*scratch*" "*Messages*" "*Help*"))
     "Common" ;; this is a group name
     )
  1. आम बफ़र्स के बारे में मैं प्रत्येक बफ़र को "कॉमन" में रखना पसंद करता हूं, जिसका नाम एक स्टार से शुरू होता है। यह इस नियम के लिए बफर बनाने का एक उदाहरण देता है:
    ((string-equal "*" (substring (buffer-name) 0 1))
     "Common"
     )
  1. यहां प्रमुख मोड द्वारा बफ़र्स को समूहीकृत करने का एक उदाहरण दिया गया है:
    ((memq major-mode
           '(org-mode text-mode rst-mode))
     "Text"
     )
  1. यहाँ मोड पर आधारित बफ़र्स को समूहीकृत करने का एक उदाहरण दिया गया है:
    ((or (get-buffer-process (current-buffer))
         ;; Check if the major mode derives from `comint-mode' or
         ;; `compilation-mode'.
         (tabbar-buffer-mode-derived-p
          major-mode '(comint-mode compilation-mode)))
     "Process"
     )
  1. यहाँ regexp द्वारा समूहीकरण टैब का एक उदाहरण दिया गया है:
    ((string-match "^__" (buffer-name))
     "Templates"
     )
  1. प्रमुख मोड द्वारा समूह बफ़र:
    (if (and (stringp mode-name)
                  ;; Take care of preserving the match-data because this
                  ;; function is called when updating the header line.
                  (save-match-data (string-match "[^ ]" mode-name)))
             mode-name
           (symbol-name major-mode))

एक बार जब आप नियम बना लेते हैं, तो आप समूहों को टॉगल करने के लिए टैब की टैब लाइन पर + या - दबा सकते हैं, और बफ़र्स के बीच स्विच करने के लिए, और, भी। या बस निम्नलिखित मानदंड बाँधें:

tabbar-forward
tabbar-backward
tabbar-forward-group
tabbar-backward-group

और कीबोर्ड के साथ टैब और टैब समूहों के बीच चलते हैं।

व्यक्तिगत रूप से मैं समूह टैब करता हूं, ताकि मैं देखूं कि क्या खुला है, लेकिन उनके साथ नेविगेट करें ido-switch-buffer

नियमों के सेट के बीच स्विच करें

इसके अलावा, बफर ग्रुपिंग नियमों के विभिन्न सेट और इन दोनों के बीच चक्र को परिभाषित किया जा सकता है। यहाँ बफर समूहन नियमों के दो सेटों के बीच साइकिल चलाने का एक उदाहरण दिया गया है:

;; tab-groups!
(setq tbbr-md "common")
(defun toggle-tabbar-mode ()
  "Toggles tabbar modes - all buffers vs. defined in the `tabbar-buffer-groups'."
  (interactive)
  (if (string= tbbr-md "groups")
      (progn ;; then
        (setq tabbar-buffer-groups-function 'tabbar-buffer-groups-common)
        (setq tbbr-md "common"))
    (progn ;; else
      (setq tabbar-buffer-groups-function 'tabbar-buffer-groups)
      (setq tbbr-md "groups"))))
;; by default - all tabs:
(setq tabbar-buffer-groups-function 'tabbar-buffer-groups-common)

यह टैब tabbar-buffer-groups-commonऔर tabbar-buffer-groupsसमूह समूहीकरण के बीच टॉगल करता है।

नाम से टैब्बर बफ़र्स सॉर्ट करें

मुझे नाम से टैबबार बफ़र्स को सॉर्ट करना फायदेमंद लगता है। इसे पाने का तरीका यहां बताया गया है:

(defun tabbar-add-tab (tabset object &optional append_ignored)
  "Add to TABSET a tab with value OBJECT if there isn't one there yet.
If the tab is added, it is added at the beginning of the tab list,
unless the optional argument APPEND is non-nil, in which case it is
added at the end."
  (let ((tabs (tabbar-tabs tabset)))
    (if (tabbar-get-tab object tabset)
        tabs
      (let ((tab (tabbar-make-tab object tabset)))
        (tabbar-set-template tabset nil)
        (set tabset (sort (cons tab tabs)
                          (lambda (a b) (string< (buffer-name (car a)) (buffer-name (car b))))))))))

विस्तृत उत्तर के लिए धन्यवाद। मैं उपरोक्त कोशिश करने की कोशिश करूंगा और आपको
बता

लेकिन ओपी "प्रति विंडो एक टैब्बर" नहीं चाहता है, वह प्रति फ्रेम एक टैब्बर चाहता है और टैब्बर में प्रत्येक टैब को बफर के बजाय "विंडो कॉन्फिगर" (यानी कई विंडो) का प्रतिनिधित्व करना चाहिए, इसलिए बफ़र्स को समूहीकृत करना मुद्दा नहीं है ।
स्टीफन

6

ATTRIBUTE: प्रति फ्रेम आधार पर बफ़र्स का समूहीकरण, लाइब्रेरी फ़्रेम-बफ़्स में Alp Aker द्वारा विकसित / लिखित कोड की अवधारणाओं और प्रत्यक्ष भागों का एक सीधा कार्यान्वयन है: https://github.com/alpaker/Frame-Bufs

निम्नलिखित पुस्तकालय का उपयोग करने का एक उदाहरण है tabbar.el / समूह टैब / बफ़र्स का उपयोग गतिशील रूप से प्रति-फ्रेम के आधार पर या तो टैब / बफ़र्स को जोड़ने या टैब / बफ़र्स को C-c C-aहटाने के साथ किया जाता है C-c C-n। केवल दो (2) समूह हैं - वर्तमान फ्रेम (यानी, "A") के साथ जुड़े, और वर्तमान फ्रेम (यानी, ) से जुड़े नहीं हैं "N"। समूह फ्रेम-स्थानीय हैं, जिसका अर्थ है कि प्रत्येक फ्रेम का अपना समूह हो सकता है। कस्टम समूहीकरण के साथ रीसेट किया जा सकता है C-c C-r। संबद्ध और गैर-संबद्ध समूहों के बीच स्विच करें C-tab। वर्तमान समूह में अगले टैब / बफर पर जाएं M-s-right। वर्तमान समूह में पिछले टैब / बफर पर जाएं M-s-left

टैब्स / बफ़र्स जोड़ा या के साथ प्रोग्राम के रूप में हटाया जा सकता है my-add-bufferऔर my-remove-buffer। चुनिंदा फ़्रेमों में कुछ बफ़र्स खोलने के तरीके के उदाहरण के लिए, कृपया संबंधित थ्रेड को देखें कि फ़ाइल खोलने से पहले उसे कैसे इंटरसेप्ट करें और कौन सा फ्रेम तय करें : /programming//a/18371427/2112489 फ़ंक्शनmy-add-buffer को करने की आवश्यकता होगी उपर्युक्त लिंक में कोड के उपयुक्त स्थानों पर शामिल किया जाए यदि कोई उपयोगकर्ता उस सुविधा को लागू करने का विकल्प चुनता है।

उपयोगकर्ता एक प्रथा में एक प्रविष्टि बनाने की इच्छा कर सकता है mode-line-formatजो निम्नलिखित स्निपेट को शामिल करके मोड-लाइन में वर्तमान टैब समूह का नाम प्रदर्शित करता है: (:eval (when tabbar-mode (format "%s" (tabbar-current-tabset t)))) हालांकि, मोड-लाइन को अधिक विवरण में अनुकूलित करना, इस उदाहरण के दायरे से परे है।

समारोह tabbar-add-tabको संशोधित किया गया है ताकि टैब / बफ़र्स को वर्णानुक्रम में लाया जा सके।

tabbar-line-tabस्थिति के आधार पर चार (4) विभिन्न चेहरों को प्रदान करने के लिए फ़ंक्शन को संशोधित किया गया है। यदि टैब / बफ़र फ्रेम और आईएस चयनित के साथ जुड़ा हुआ है, तो tabbar-selected-associatedचेहरे का उपयोग करें । यदि टैब / बफर फ्रेम के साथ जुड़ा हुआ है और चयनित नहीं है, तो tabbar-unselected-associatedचेहरे का उपयोग करें । यदि टैब / बफ़र फ़्रेम और IS के साथ चयनित नहीं है, तो tabbar-selected-unassociatedचेहरे का उपयोग करें । यदि टैब / बफर फ्रेम से जुड़ा नहीं है और चयनित नहीं है, तो उपयोग करेंtabbar-unselected-unassociated चेहरे का ।

;; Download tabbar version 2.0.1 by David Ponce:
;;   https://marmalade-repo.org/packages/tabbar
;; or use package-install for marmalade repositories.

;; Place tabbar-2.0.1.el in the `load-path` -- it is okay to rename it to tabbar.el
;; or add the directory (where `tabbar.el` resides) to the `load-path`.
;; EXAMPLE:  (setq load-path (append '("/Users/HOME/.emacs.d/lisp/") load-path))

(require 'tabbar)

(setq tabbar-cycle-scope 'tabs)

(remove-hook 'kill-buffer-hook 'tabbar-buffer-track-killed)

(defun my-buffer-groups ()
  "Function that gives the group names the current buffer belongs to.
It must return a list of group names, or nil if the buffer has no
group.  Notice that it is better that a buffer belongs to one group."
  (list
    (cond
      ((memq (current-buffer) (my-buffer-list (selected-frame)))
        "A")
      (t
        "N"))))

(setq tabbar-buffer-groups-function 'my-buffer-groups) ;; 'tabbar-buffer-groups

;; redefine tabbar-add-tab so that it alphabetizes / sorts the tabs
(defun tabbar-add-tab (tabset object &optional append)
  "Add to TABSET a tab with value OBJECT if there isn't one there yet.
If the tab is added, it is added at the beginning of the tab list,
unless the optional argument APPEND is non-nil, in which case it is
added at the end."
  (let ((tabs (tabbar-tabs tabset)))
    (if (tabbar-get-tab object tabset)
        tabs
      (let* ((tab (tabbar-make-tab object tabset))
             (tentative-new-tabset
               (if append
                 (append tabs (list tab))
                 (cons tab tabs)))
             (new-tabset
               (sort
                  tentative-new-tabset
                  #'(lambda (e1 e2)
                     (string-lessp
                       (format "%s" (car e1)) (format "%s" (car e2)))))))
        (tabbar-set-template tabset nil)
        (set tabset new-tabset)))))

;; AUTHOR:  Alp Aker -- https://github.com/alpaker/Frame-Bufs
;; @lawlist extracted/revised the function(ality) from said library.
(defun my-buffer-list (frame)
  ;; Remove dead buffers.
  (set-frame-parameter frame 'frame-bufs-buffer-list
    (delq nil (mapcar #'(lambda (x) (if (buffer-live-p x) x))
      (frame-parameter frame 'frame-bufs-buffer-list))))
  ;; Return the associated-buffer list.
  (frame-parameter frame 'frame-bufs-buffer-list))

(defun my-kill-buffer-fn ()
"This function is attached to a buffer-local `kill-buffer-hook'."
  (let ((frame (selected-frame))
        (current-buffer (current-buffer)))
    (when (memq current-buffer (my-buffer-list frame))
      (my-remove-buffer current-buffer frame))))

;; AUTHOR:  Alp Aker -- https://github.com/alpaker/Frame-Bufs
;; @lawlist extracted/revised the function(ality) from said library.
(defun my-add-buffer (&optional buf frame)
"Add BUF to FRAME's associated-buffer list if not already present."
(interactive)
  (let* ((buf (if buf buf (current-buffer)))
         (frame (if frame frame (selected-frame)))
         (associated-bufs (frame-parameter frame 'frame-bufs-buffer-list)))
    (unless (bufferp buf)
      (signal 'wrong-type-argument (list 'bufferp buf)))
    (unless (memq buf associated-bufs)
      (set-frame-parameter frame 'frame-bufs-buffer-list (cons buf associated-bufs)))
    (with-current-buffer buf
      (add-hook 'kill-buffer-hook 'my-kill-buffer-fn 'append 'local))
    (when tabbar-mode (tabbar-display-update))))

;; AUTHOR:  Alp Aker -- https://github.com/alpaker/Frame-Bufs
;; @lawlist extracted/revised the function(ality) from said library.
(defun my-remove-buffer (&optional buf frame)
"Remove BUF from FRAME's associated-buffer list."
(interactive)
  (let ((buf (if buf buf (current-buffer)))
        (frame (if frame frame (selected-frame))))
    (set-frame-parameter frame 'frame-bufs-buffer-list
      (delq buf (frame-parameter frame 'frame-bufs-buffer-list)))
    (when tabbar-mode (tabbar-display-update))))

;; AUTHOR:  Alp Aker -- https://github.com/alpaker/Frame-Bufs
;; @lawlist extracted/revised the function(ality) from said library.
(defun my-buffer-list-reset ()
    "Wipe the entire slate clean for the selected frame."
  (interactive)
    (modify-frame-parameters (selected-frame) (list (cons 'frame-bufs-buffer-list nil)))
    (when tabbar-mode (tabbar-display-update)))

(defun my-switch-tab-group ()
"Switch between tab group `A` and `N`."
(interactive)
  (let ((current-group (format "%s" (tabbar-current-tabset t)))
        (tab-buffer-list (mapcar
            #'(lambda (b)
                (with-current-buffer b
                  (list (current-buffer)
                        (buffer-name)
                        (funcall tabbar-buffer-groups-function))))
                 (funcall tabbar-buffer-list-function))))
    (catch 'done
      (mapc
        #'(lambda (group)
            (when (not (equal current-group
                          (format "%s" (car (car (cdr (cdr group)))))))
              (throw 'done (switch-to-buffer (car (cdr group))))))
        tab-buffer-list))))

(defface tabbar-selected-associated
  '((t :background "black" :foreground "yellow" :box (:line-width 2 :color "yellow")))
  "Face used for the selected tab -- associated with the `frame-bufs-buffer-list`."
  :group 'tabbar)

(defface tabbar-unselected-associated
  '((t :background "black" :foreground "white" :box (:line-width 2 :color "white")))
  "Face used for unselected tabs  -- associated with the `frame-bufs-buffer-list`."
  :group 'tabbar)

(defface tabbar-selected-unassociated
  '((t :background "black" :foreground "white" :box (:line-width 2 :color "firebrick")))
  "Face used for the selected tab -- UNassociated with the `frame-bufs-buffer-list`."
  :group 'tabbar)

(defface tabbar-unselected-unassociated
  '((t :background "black" :foreground "white" :box (:line-width 2 :color "blue")))
  "Face used for unselected tabs -- UNassociated with the `frame-bufs-buffer-list`."
  :group 'tabbar)

(setq tabbar-background-color "black")

(defsubst tabbar-line-tab (tab)
  "Return the display representation of tab TAB.
That is, a propertized string used as an `header-line-format' template
element.
Call `tabbar-tab-label-function' to obtain a label for TAB."
  (concat
    (propertize
      (if tabbar-tab-label-function
          (funcall tabbar-tab-label-function tab)
        tab)
      'tabbar-tab tab
      'local-map (tabbar-make-tab-keymap tab)
      'help-echo 'tabbar-help-on-tab
      'mouse-face 'tabbar-highlight
      'face
        (cond
          ((and
              (tabbar-selected-p tab (tabbar-current-tabset))
              (memq (current-buffer) (my-buffer-list (selected-frame))))
            'tabbar-selected-associated)
          ((and
              (not (tabbar-selected-p tab (tabbar-current-tabset)))
              (memq (current-buffer) (my-buffer-list (selected-frame))))
            'tabbar-unselected-associated)
          ((and
              (tabbar-selected-p tab (tabbar-current-tabset))
              (not (memq (current-buffer) (my-buffer-list (selected-frame)))))
            'tabbar-selected-unassociated)
          ((and
              (not (tabbar-selected-p tab (tabbar-current-tabset)))
              (not (memq (current-buffer) (my-buffer-list (selected-frame)))))
            'tabbar-unselected-unassociated))
      'pointer 'hand)
    tabbar-separator-value))

(define-key global-map "\C-c\C-r" 'my-buffer-list-reset)

(define-key global-map "\C-c\C-a" 'my-add-buffer)

(define-key global-map "\C-c\C-n" 'my-remove-buffer)

(define-key global-map (kbd "<M-s-right>") 'tabbar-forward)

(define-key global-map (kbd "<M-s-left>") 'tabbar-backward)

(define-key global-map [C-tab] 'my-switch-tab-group)

(tabbar-mode 1)

निम्नलिखित स्क्रीनशॉट में दो संभावित बफर / टैब ग्रुपिंग को दर्शाया गया है: (1) बाईं ओर उन बफ़र्स / टैब का एक समूह है जो SYSTEM[पीले और सफ़ेद टैब] नाम के फ्रेम से जुड़े हैं , जिसके साथ बड़े अक्षर "A" का संकेत दिया गया है मोड ऑनलाइन; और (2) दाईं ओर उन बफ़र्स / टैब का एक समूह है जो [ब्लू और रेड टैब] नाम के फ्रेम से जुड़ा नहीं हैSYSTEM , एक कैपिटल लेटर "N" के साथ है जो मोड-लाइन में दर्शाया गया है।

उदाहरण


लेकिन ओपी "प्रति विंडो एक टैबबार" नहीं चाहता है, वह प्रति फ्रेम एक टैबबार चाहता है और टैबबार में प्रत्येक टैब बफर के बजाय "विंडो कॉन्फिगर" (यानी कई विंडो) का प्रतिनिधित्व करना चाहिए।
स्टीफन

5

बाहर की जाँच पर विचार करें elscreen हालांकि यह वास्तव में समूह बफ़र्स नहीं है,।

यह क्या करता है समूह की खिड़कियां और कई लेआउट (टैब) तक पहुंच प्रदान करते हैं जो आप जल्दी से बीच ले जा सकते हैं। मेरे वर्कफ़्लो में अक्सर एक स्क्रीन में कुछ रूबी कोड और संबद्ध परीक्षण होते हैं, जबकि मेरे टूडू और ऑर्ग नोट्स दूसरे में होते हैं, और शायद एसक्यूएल प्रश्नों के प्रारूपण के लिए एक स्क्रैच बफर एक तिहाई में होता है। यह मुझे कार्यों और परियोजनाओं के बीच आसानी से कूदने की अनुमति देता है, भले ही प्रत्येक स्क्रीन बफ़र्स के एक ही पूल पर खींचता है।


3

मेरे प्लगइन, सेंटूर-टैब के बारे में कैसे? इसमें बहुत सारे कॉन्फ़िगरेशन विकल्प हैं, यह वास्तव में कार्यात्मक है, यह काओलिन थीम्स जैसे बहुत लोकप्रिय विषयों द्वारा समर्थित है और कुल मिलाकर एक बहुत अच्छा लग रहा है और सौंदर्य पैकेज (उपयोगकर्ता की प्रतिक्रिया के अनुसार) है। यह MELPA में उपलब्ध है और यह इस तरह दिखता है:

यहां छवि विवरण दर्ज करें


ऐसा लगता है कि अभी तक एक और "प्रत्येक टैब एक बफर का प्रतिनिधित्व करता है और प्रत्येक विंडो का अपना टैबबार" गैर-समाधान है।
स्टीफन

मैंने सिर्फ टैब नामों के बजाय टैब समूहों को दिखाने के लिए एक अनुकूलन जोड़ा है ताकि एक फ़ंक्शन में आप नियम स्थापित कर सकें (यानी एक समूह में समूह और एक दूसरे में समूह c और दूसरे में c ++ और इसी तरह) और उन समूहों में टैब दिखाए जाते हैं।
इमैनुएल बस्टोस

यह अभी भी इस सवाल का जवाब नहीं देता है, जहां प्रति फ्रेम (प्रति विंडो के बजाय) एक टैबबार होना चाहिए और प्रत्येक टैब एक विंडो-कॉन्फ़िगरेशन का प्रतिनिधित्व करता है।
स्टीफन

ठीक है, मैं अविवाहित नहीं था। मैं जांच करूंगा और उस पर काम करूंगा!
इमैनुएल बस्टोस

0

यहाँ मेरा विन्यास है, इसके लायक क्या है। इसकी विशेषताएं:

  • टैब (पर माउस आपरेशन mouse-2पास करने के लिए, ब्राउज़रों में , mouse-3 एक नया Emacs विंडो में खुला पॉप, में की तरह i3 )
  • टीएमक्स / स्क्रीन कीM-left तरह कीबोर्ड नियंत्रण ( और दाएं स्विच टैब) )
  • रंग ("Moe थीम / moe-dark" कॉन्फिगर के साथ संगत )
  • समूहन (वर्तमान में, Emacs)*buffers* और "नियमित")
  • स्वतः-अद्यतन ( उपयोग-पैकेज के साथ )

टैब पट्टी

(use-package tabbar
  :ensure t
  :bind
  ("<M-left>" . tabbar-backward)
  ("<M-right>" . tabbar-forward)

  :config
  (set-face-attribute
   'tabbar-button nil
   :box '(:line-width 1 :color "gray19"))

  (set-face-attribute
   'tabbar-selected nil
   :foreground "orange"
   :background "gray19"
   :box '(:line-width 1 :color "gray19"))

  (set-face-attribute
   'tabbar-unselected nil
   :foreground "gray75"
   :background "gray25"
   :box '(:line-width 1 :color "gray19"))

  (set-face-attribute
   'tabbar-highlight nil
   :foreground "black"
   :background "orange"
   :underline nil
   :box '(:line-width 1 :color "gray19" :style nil))

  (set-face-attribute
   'tabbar-modified nil
   :foreground "orange red"
   :background "gray25"
   :box '(:line-width 1 :color "gray19"))

  (set-face-attribute
   'tabbar-selected-modified nil
   :foreground "orange red"
   :background "gray19"
   :box '(:line-width 1 :color "gray19"))

  (custom-set-variables
   '(tabbar-separator (quote (0.2))))

  (defun tabbar-buffer-tab-label (tab)
    "Return a label for TAB.
  That is, a string used to represent it on the tab bar."
    (let ((label  (if tabbar--buffer-show-groups
                      (format " [%s] " (tabbar-tab-tabset tab))
                    (format " %s " (tabbar-tab-value tab)))))
      (if tabbar-auto-scroll-flag
          label
        (tabbar-shorten
         label (max 1 (/ (window-width)
                         (length (tabbar-view
                                  (tabbar-current-tabset)))))))))

  (defun px-tabbar-buffer-select-tab (event tab)
    "On mouse EVENT, select TAB."
    (let ((mouse-button (event-basic-type event))
          (buffer (tabbar-tab-value tab)))
      (cond
       ((eq mouse-button 'mouse-2) (with-current-buffer buffer (kill-buffer)))
       ((eq mouse-button 'mouse-3) (pop-to-buffer buffer t))
       (t (switch-to-buffer buffer)))
      (tabbar-buffer-show-groups nil)))

  (defun px-tabbar-buffer-help-on-tab (tab)
    "Return the help string shown when mouse is onto TAB."
    (if tabbar--buffer-show-groups
        (let* ((tabset (tabbar-tab-tabset tab))
               (tab (tabbar-selected-tab tabset)))
          (format "mouse-1: switch to buffer %S in group [%s]"
                  (buffer-name (tabbar-tab-value tab)) tabset))
      (format "\
mouse-1: switch to %S\n\
mouse-2: kill %S\n\
mouse-3: Open %S in another window"
              (buffer-name (tabbar-tab-value tab))
              (buffer-name (tabbar-tab-value tab))
              (buffer-name (tabbar-tab-value tab)))))

  (defun px-tabbar-buffer-groups ()
    "Sort tab groups."
    (list (cond ((or
                  (eq major-mode 'dired-mode)
                  (string-equal "*" (substring (buffer-name) 0 1))) "emacs")
                (t "user"))))
  (setq tabbar-help-on-tab-function 'px-tabbar-buffer-help-on-tab
        tabbar-select-tab-function 'px-tabbar-buffer-select-tab
        tabbar-buffer-groups-function 'px-tabbar-buffer-groups)

  :init
  (tabbar-mode 1))

अनुलग्नक 1 - मो थीम

(use-package moe-theme
  :ensure t
  :config
  (progn
    (load-theme 'moe-dark :no-confirm)
    (set-face-attribute 'fringe nil :background "gray19")))

अनुलग्नक 2 - अंतिम 2 बफ़र्स टॉगल करें (KB मैक्रो)

(define-key global-map [(control tab)] (kbd "C-x b <return>")) 
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.