समूहों में विभाजित बफ़र
यह टैब्बर के साथ संभव है। आप समूहों में समूह बफ़र्स के लिए नियम जोड़ सकते हैं। यहाँ एक बुनियादी स्निपेट है:
(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"
))))
उदाहरण के नियम:
- सूची बफ़र नाम:
((member (buffer-name)
'("*scratch*" "*Messages*" "*Help*"))
"Common" ;; this is a group name
)
- आम बफ़र्स के बारे में मैं प्रत्येक बफ़र को "कॉमन" में रखना पसंद करता हूं, जिसका नाम एक स्टार से शुरू होता है। यह इस नियम के लिए बफर बनाने का एक उदाहरण देता है:
((string-equal "*" (substring (buffer-name) 0 1))
"Common"
)
- यहां प्रमुख मोड द्वारा बफ़र्स को समूहीकृत करने का एक उदाहरण दिया गया है:
((memq major-mode
'(org-mode text-mode rst-mode))
"Text"
)
- यहाँ मोड पर आधारित बफ़र्स को समूहीकृत करने का एक उदाहरण दिया गया है:
((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"
)
- यहाँ regexp द्वारा समूहीकरण टैब का एक उदाहरण दिया गया है:
((string-match "^__" (buffer-name))
"Templates"
)
- प्रमुख मोड द्वारा समूह बफ़र:
(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))))))))))