[xyzzy:04704] Re: VisualStudo ライクな TAB
- Subject: [xyzzy:04704] Re: VisualStudo ライクな TAB
- From: Tomonori Shimomura <chop@xxxxxxxxxxxxxx>
- X-mailer: Becky! ver 1.26
いつもXYZZYにはお世話になっています。
下村です。
On Wed, 28 Jun 2000 00:29:58 +0900
"Kei Kawashima" <kei-kawashima@xxxxxxxxxxx> wrote:
> ちょうど、VisualStudioのエディタのような操作です。
僕もTABでVCのエディタみたいになってほしいほうなので、
次のように設定しています。
もっとエクセレントな方法があったら教えてください。
(defun shift-selection-or-insert-tab()
(interactive)
(if (get-selection-type)
(shift-selection)
(insert "\t")
)
)
(defun unshift-selection-or-insert-tab()
(interactive)
(if (get-selection-type)
(unshift-selection)
)
)
( global-set-key #\F24 'shift-selection-or-insert-tab)
( global-set-key #\S-F24 'unshift-selection-or-insert-tab)
( set-extended-key-translate-table exkey-tab #\F24)
( set-extended-key-translate-table exkey-S-tab #\S-F24)