From ada40c4be58c988b9447d498f1bd0a8fe998c3cd Mon Sep 17 00:00:00 2001 From: ncaq Date: Mon, 13 Jan 2014 10:33:36 +0900 Subject: [PATCH] =?UTF-8?q?tabbar=E3=81=93=E3=82=8C=E8=A6=81=E3=82=89?= =?UTF-8?q?=E3=81=AA=E3=81=84=E3=82=93=E3=81=98=E3=82=83=E3=81=AD=3F?= =?UTF-8?q?=E3=81=AA=E3=82=93=E3=81=8B=E3=83=90=E3=83=83=E3=83=95=E3=82=A1?= =?UTF-8?q?=E3=81=AE=E5=84=AA=E5=85=88=E9=A0=86=E4=BD=8D=E3=82=82=E5=A4=89?= =?UTF-8?q?=E3=82=8F=E3=81=A3=E3=81=A6=E3=81=97=E3=81=BE=E3=81=86=E3=81=97?= =?UTF-8?q?.=E8=A1=A8=E7=A4=BA=E9=A0=98=E5=9F=9F=E3=82=82=E6=B8=9B?= =?UTF-8?q?=E3=82=8B=E3=81=97.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- profile.d/00_disable.elc | Bin 766 -> 766 bytes profile.d/22_key-bind.el | 2 +- profile.d/22_key-bind.elc | Bin 2121 -> 2126 bytes profile.d/50_tabbar.el | 61 -------------------------------------- profile.d/50_tabbar.elc | Bin 1913 -> 0 bytes 5 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 profile.d/50_tabbar.el delete mode 100644 profile.d/50_tabbar.elc diff --git a/profile.d/00_disable.elc b/profile.d/00_disable.elc index 78500d4a30110e1b091431061e029d48d0b58847..3534649bf74daf9d2d42c37f986e6dac73d45794 100644 GIT binary patch delta 30 lcmeyz`j2&jp0ICzo`P3mo`RvVf}w$xk*Srb(MHF;OaPl@2{Qly delta 30 lcmeyz`j2&jo^VJ;se)Hxo`Qm3OaPmI2{8Zw diff --git a/profile.d/22_key-bind.el b/profile.d/22_key-bind.el index 63f679932..63b2096df 100644 --- a/profile.d/22_key-bind.el +++ b/profile.d/22_key-bind.el @@ -17,7 +17,7 @@ (global-set-key (kbd "M-c") 'help-command);HHKだとF1押しにくい (global-set-key (kbd "M-h") 'backward-kill-word) (global-set-key (kbd "M-j") 'ag-project) -(global-set-key (kbd "M-l") 'sort-lines);ソートする +(global-set-key (kbd "M-l") 'sort-paragraphs);ソートする (global-set-key (kbd "M-m") 'through-newline); (global-set-key (kbd "M-n") 'forward-paragraph) (global-set-key (kbd "M-o") 'ibuffer);もう一つのバッファーリスト diff --git a/profile.d/22_key-bind.elc b/profile.d/22_key-bind.elc index dc62c03adec678c558188d0bf279dbe018bcb202..2afc14f867e70ec8425ac4d853f59c71a06751d0 100644 GIT binary patch delta 45 zcmX>pa86)?o^Wt!o`P3mo`Ru~f{}rhfrXW+;YLR%HqL^?qQvx~#Da{??QDk_0X}gK AI{*Lx delta 40 vcmX>na8h7`o^W_-ih@^So`Qmff}xp}k+GGb`9?=4HkO>sywuG-Y=;;D_nQn5 diff --git a/profile.d/50_tabbar.el b/profile.d/50_tabbar.el deleted file mode 100644 index 9f674494d..000000000 --- a/profile.d/50_tabbar.el +++ /dev/null @@ -1,61 +0,0 @@ -(require 'tabbar) -(tabbar-mode 1) - -;;http://d.hatena.ne.jp/tequilasunset/20110103/p1 -;;Operaライクなキーバインドに -(define-key tabbar-mode-map [(control tab)] 'tabbar-forward) -(define-key tabbar-mode-map [(control shift iso-lefttab)] 'tabbar-backward) -;; -nw では効かないので別のキーバインドを割り当てる -(define-key tabbar-mode-map (kbd "C-x n") 'tabbar-forward) -(define-key tabbar-mode-map (kbd "C-x p") 'tabbar-backward) - -;;タブをグループ化しない -;;(setq tabbar-buffer-groups-function nil) - -;;タブを名前でソートする -(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)))))))))) - -;;http://dev.ariel-networks.com/wp/documents/aritcles/emacs/part11 -;;リスト8 " *"で始まるバッファをタブとして表示しない -(eval-when-compile (require 'cl-lib)) -(defun my-tabbar-buffer-list () - (cl-remove-if - (lambda (buffer) - (cl-find (aref (buffer-name buffer) 0) " *")) - (buffer-list))) -(setq tabbar-buffer-list-function 'my-tabbar-buffer-list) - -;;外観変更 -(set-face-attribute - 'tabbar-default nil - :family "Ricty" - :background "#002b36" - :foreground "#93a1a1" - :height 1.0) -(set-face-attribute - 'tabbar-unselected nil - :background "#93a1a1" - :foreground "#002b36" - :box t) -(set-face-attribute - 'tabbar-selected nil - :background "#002b36" - :foreground "#93a1a1" - :box t) -(set-face-attribute - 'tabbar-button nil - :box t) -(set-face-attribute - 'tabbar-separator nil - :height 10) diff --git a/profile.d/50_tabbar.elc b/profile.d/50_tabbar.elc deleted file mode 100644 index 706243cd6059e3b36e16dcc248869037936b6cc9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1913 zcmbtV-*4MC5YD5cz3gpSHegq!NaG+aJ&oE7 zw1S&fz*|v3#vskcDH~@ekR~ki-j&e}ROk=K3*Crgif|l@h8H$2kC#T14QIpTljC{L zO)P5fC>2Zy1$V+&iD}Y7oW;!B?xkA*uWQgtCmZ>dI|SG`@Wz{kwCjwm6&A{s;*Bhz z)P;3Ms<}NvtFaDvS>mo9^03o5J$(_Q)EGl)2ZdISBe-={^gFJo=;Gtm^)(a=Zg}C4 z2JYR#V|={93Qa8pZRz%3A%X6w9o+~4&h0^j=!g5V%uIT01Q6cA3c zgyECEnx-tlNrum0^D^w=+X+6Sz0OQ4gk$X4O8NqWaXcm&g>bvBeAHmZsNqX6;!7)y zfc1Jecr!34MJ1JpK8qFH9#B<`t_jkgZGe?F_uQ0E%yuCw2h!@O7L|Jj&Ux|Kqr)8) zLb$UGXE5jod*^97gp0BSr{U(}^5f(NI3)ltzB^u{>i@cYH@Uh2Sz#Fk@|9M-ao7^b z+`q4civzg!X77v2^r|}oNpw01az}WS%Umjj3I+Y>QA_KN0%%n&to1O`yjHvhZsu)+ zy$BZ{K1}|6OYumSO4b-&!TmxO3)G=SUX(0&o=vDS{w+Ab)8w_}7T&B6J3@XDZFBGT z00%2@KlwkRaIpWFc)3LHPjarb5oI639#)_2yzBowRlS{Eto0Bl-P$xfoTf>(yS0r& zI@%%#nRa`Jm%n)Z{JKNxpy^;*dD$F#75%V%Ng|ns@B4l9?Sw*%h}eb}ado0u*4zo; z*6ITA1Yp@ZY(wK{9~^QdiSg6k`70W>aY!@P1w}LDZB+>q;Z-4Kkj-W=goC};5W{FR z>d*R5L_`QS|zbxu?wOhZ{I33Z8Y8JLD$hN6y)X!MWNx9=lENFanm)M+-`EE5NMN2cF2?~fRi+RryGjzfHW%WfJKN3=6)$ie

L5tf_cpq-(LNQJ_KL`q#tjnZShRJ}mq^+!BAK_meiDK>k^y<785%bA z{^p>gs#OIw0Q`R)P##gm3lVXLw|(BCD7tEq(%ag3b&M*m-)(`#zeiJsa