This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mac OS X(10.6.7) | |
Firefox(4.0.1) | |
Tree Style Tab(0.11.2011050601) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;from http://www.emacswiki.org/emacs/AutoComplete | |
(require 'auto-complete) | |
(require 'yasnippet) | |
(defun ac-yasnippet-candidate () | |
(let ((table (yas/get-snippet-tables major-mode))) | |
(if table | |
(let (candidates (list)) | |
(mapcar (lambda (mode) | |
(maphash (lambda (key value) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; undo-tree.el --- Treat undo history as a tree | |
;; 2010/2/15 追記. | |
;; undo-tree-visualizer-quit のバグを修正しました. | |
;; 参考) http://d.hatena.ne.jp/kitokitoki/20100211/p1 | |
;; オリジナルからの変更点 | |
;; 1. q で *undo-tree* があったウィンドウも削除し,呼び出しもとのウィンドウ・バッファにポイントを移動 | |
;; 2. 上下分割から左右分割に変更 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.kanasansoft.MultidimensionalArrayLists; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
public class MultidimensionalArrayLists<E>{ | |
private static final long serialVersionUID=1L; | |
private int[] indexes_=null; |
NewerOlder