2010年8月20日金曜日

Re: いろいろな言語のコーディング規約,スタイルガイドのリスト

VIAL TECHNOLOGIES 2.0

http://coreblog.org/ats/a-list-of-coding-standard-websites

調べたので闇雲に追加します。

Perl5

Perl::Critic::PolicySummary - search.cpan.org

http://search.cpan.org/dist/Perl-Critic/lib/Perl/Critic/PolicySummary.pod

perlstyle - search.cpan.org

http://search.cpan.org/dist/perl/pod/perlstyle.pod

C

==

C and C++ Style Guides (Linux kernel とかたくさん)

http://www.chris-lott.org/resources/cstyle/

scala

=========

Scala Style Guide — Scala Style Guide v1.1.0 documentation

http://davetron5000.github.com/scala-style/

lua

lua-users wiki: Lua Style Guide

http://lua-users.org/wiki/LuaStyleGuide

Google

===========

たくさん(C,C++,Objective-C,Python,R,Javascript,XML)

google-styleguide - Project Hosting on Google Code

http://code.google.com/p/google-styleguide/

翻訳 | textdrop

http://www.textdrop.net/translation/

Google's R Style Guide (tentatively translated in Japanese)

http://www13.atpages.jp/t6s5/docs/r-style-guide-j.html

Google Python スタイルガイド — lazy programmer's works. v1.0 documentation

http://works.surgo.jp/translation/pyguide.html

Google JavaScript Style Guide 和訳 — Google JavaScript Style Guide 和訳

http://cou929.nu/data/google_javascript_style_guide/

Mozilla (C++/Jacascrpt)

=============================================

Coding Style - MDC

https://developer.mozilla.org/En/Developer_Guide/Coding_Style

Labs/Jetpack/Reboot/Style Guide - MozillaWiki (Jetpack/Javascript)

https://wiki.mozilla.org/Labs/Jetpack/Reboot/Style_Guide (/Reboot うける)

GNU (C/ドキュメント)

=======================================

GNU Coding Standards

http://www.gnu.org/prep/standards/standards.html

Free BSD (C/カーネル)

=========================================

style(9)

http://www.freebsd.org/cgi/man.cgi?query=style&sektion=9

Synfony(PHP)

=======================

HowToContributeToSymfony - symfony - Trac

http://trac.symfony-project.org/wiki/HowToContributeToSymfony#CodingStandards

Adobe (Flex/ActionScript3)

===================================================

Coding Conventions - Flex SDK - Adobe Open Source

http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions

Gentoo Sunrize

=================

CodingStandards - Sunrise Project Overlay - Trac

http://overlays.gentoo.org/proj/sunrise/wiki/CodingStandards

Yahoo! (HTML/Webメディア向け)

================

Coding basics | Yahoo! Style Guide

http://styleguide.yahoo.com/resources/basic-webpage-coding/coding-basics

2010年6月9日水曜日

[Vim] ManPageViewでperldocjpをひく




    " ~/.vim/after/ftplugin/perl.vim
    let g:manpageview_pgm_pl = "perldocjp"


Vimからは :Man perlvar.pl

2010年6月3日木曜日

[翻訳]プレリリース: App Engine Python SDKのためのローカルSQLite datastore

sqlite_datastore_stub

プレリリース: App Engine Python SDKのためのローカルSQLite datastore

sqlite_datastore_stub は、現在のファイルベースのスタブを置き換えることを目的とするPython SDKのためのローカルの データストアの実装です。

データはSQLite データベースによってディスク上に格納されます、したがってメモリ消費の問題はありません、そしてサーバのスタート時間も同様に、ローカルの データストアのサイズに応じた影響を受けることがなくなるでしょう。新しいデータストアスタブで期待できるものは以下です
  • ローカルデータストアに多くのデータがある場合、スタート時間が改善されます
  • ローカルデータストアに多くのデータがある場合、パフォーマンスが改善されます
  • メモリ消費を抑えます
とはいえ、同様に重要なのは、予期 すべきではないことがあります
  • 少量のデータに対処するときのパフォーマンス改良。すべてのクエリのスキャンは効率が悪く聞こえますが、速度のためにメモリ内のすべてのデータを保つのが難しいのです--したがって、比較的小さいデータがあるのなら、多くか少しの改良もみることができないでしょう。
  • リレーショナルスキーマdev_appserverによって作成されたSQLiteデータベースを開けるなら、それが1つのkindあたり1個のテーブル、およびプロパティのためのカラムで構成されていると期待しないでください。あなたを関心があるなら、datastoreがどう構造化されるかに関するその他の詳細をここに提供します。
これがプレリリースコードであることを忘れないでください。それはあなたのすべてのデータを破壊するかもしれません。それはあなたの猫を飲み込むブラックホールの偶然発生を引き起こすかもしれません。それは、期待したように動きさえするかもしれません!ほぼ、何が起ってもおかしくはありません。

ダウンロード

ダウンロードは download page にあります。
There are two options for downloading the new stub. If you're unsure which to choose, read the Installation section for details.

インストール

There are two ways to install the sqlite_datastore_stub - you can either download a new copy of the SDK, or patch your existing copy.

Downloading a new SDK

Simply download the SDK zip from the 'download' section, unpack it, and use it as you would normally (see the 'usage' section).

Patching your existing SDK

In order to patch your existing SDK, you will need to have the unix utility 'patch'. Linux and OSX systems will already have this; on Windows you should download a new SDK, or install mingw.
  1. Download the sqlite_datastore_stub.diff file from the download section.
  2. Open a terminal window, and change to the directory containing your SDK.
  3. Enter the command "patch -p1 < /path/to/datastore_sqlite_stub.diff"
If the patch applied successfully, you should see output like the following:

google_appengine nickjohnson$ patch -p1 < /home/nickjohnson/datastore_sqlite_stub.diff 
patching file google/appengine/datastore/datastore_sqlite_stub.py
patching file google/appengine/datastore/sortable_pb_encoder.py
patching file google/appengine/tools/dev_appserver.py
Hunk #2 succeeded at 3485 (offset -6 lines).
Hunk #3 succeeded at 3504 (offset -6 lines).
Hunk #4 succeeded at 3528 (offset -6 lines).
patching file google/appengine/tools/dev_appserver_main.py

使用法(Usage):

変更されたSDKはまだ通常のdatastoreスタッブを使用するのをデフォルトとしています。SQLiteスタッブを可能にするために、dev_appserverに--use_sqlite フラグを使用してください。たとえば、

$ dev_appserver.py --use_sqlite path/to/your/app

データストアファイルの互換性

既存ファイルスタッブと新しいSQLiteスタブによって使用される形式は異なっていて、どちらももう片方によって作り出されたデータを読むことができません。もし以前に使用したものと異なったデータストアスタブを使用して dev_appserver を起動すると(もしくは --use_sqlite フラグを省略している場合も含む)エラーが出るでしょう。

未使用なデータストアを使用するのを保証するために、自身でデータストアのパスの指定して保存するか

$ dev_appsever.py --use_sqlite --datastore_path=/tmp/datastore.sqlite path/to/your/app

または、--clear_datastoreを使用して、起動前にデータストアの以前のコピーを消してください

$ dev_appserver.py --use_sqlite --clear_datastore path/to/your/app

Providing feedback

Please post any feedback or comments to the official group. But reports should be submitted to the issue tracker.

  Sign in   Recent Site Activity   Terms   Report Abuse   Print page  |  Powered by Google Sites


2009年9月22日火曜日

PySideのビルド

gentoo x86.

http://www.pyside.org/downloads/
http://www.pyside.org/docs/pyside/howto-build/index.html

まず、オフィシャルに記載されている要件をみたす。
この機会にKDE4.3をいれた。Portageからkde-base/kdebase-startkdeをアンマスクしていれただけ。
あとboostの1.39、cmakeのpythonフラグなども設定した。

以下Pysideから提供されるモージュールをうえから順番にインストールしてゆく。

せっかくだからebuildをつくりたかったが結局あとまわしに。

*ApiExtractor
wget→cmake→make && make install でok
*BoostPythonGenerator
cmake時点で FindApiExtractor.cmakeもとめられるがそのままでは見付けられないみたいなのCMAKE_MODULE_PATHでインストールさきを指定する。

    cmake -DCMAKE_MODULE_PATH=/usr/local/share/cmake-2.6/Modules  .

*Pyside-qt4.5
cmake時にGENERATORに適切な値を設定しろや、みたいなエラーがでた。
    cmake -DGENERATOR=boostpython  .
かなあ、とりあえずここのmakeは通らない。

    /usr/local/src/pyside-qt4.5+0.2/base/abstract_qobject_connection.cpp:95: error: no match for ‘operator*’ in ‘*boost::python::tuple(((const boost::python::list&)((const boost::python::list*)(& args))))’
/usr/include/boost/python/object_operators.hpp:98: note: candidates are: boost::python::api::object boost::python::api::operator*(const boost::python::api::object&, const boost::python::api::object&)

どうやら

    To compile PySide from scratch, you need to have either Boost 1.40 (currently in development) or a patched version of Boost 1.38. The required patches are:

boost/python とかにパッチを適用せなかんらしい。
こ、これはめんどい、、、 ならebuildつくりたいなあ。
つづく。



Quick Lookup:

2009年9月19日土曜日

myprojects.vim

project.vimでも使うかと思ったけどどうやらmyprojects.vimのが活発みたいなので使ってみる。
"It's an alpha-version (release early, release often)" とのこと。

[](http://www.vim.org/scripts/script.php?script_id=2556 "myprojects - Organize/Navigate projects of files (like IDE/buffer explorer/project.vim) : vim online")
Vimballをダウンロード後:so % でインストール。

特徴やproject.vimとの違いを確認。
- ファイルエクスプローラ
- tags生成
- filtering(?)
- ワーキングディレクトリの設定
- vimセッションの管理
- F1-F12キーのマッピング
- makeの設定
- errorformatの設定
- バッファエクスプローラ
- subversionのサポート

p で専用バッファ(パネル)をひらくみたい、トグルが:MyProjectsToggle 。
デフォルではvimを起動いたらと自動でパネルが開いた。
    map MyProjectsToggle
で変更できる。

cでプロジェクト作成できるらしい。
対話的にプロジェクトディレクトリやらショートカットキーに使うファンクションキーの設定やらをやるとエクスプローラが表示された。

    let g:myprojects_auto_open=0
vim起動時にプロジェクトパネルを開かないように。

    let g:myprojects_file=$HOME."/dotfiles/.myprojects"
myprojectsファイルをデフォルト(~/.myprojects)から変更。



2009年9月1日火曜日

my .zshrc

tips参考にしたものは情報もとをのこしたい。
なんでこんな設定したのかわすれるので。

~/.zsh
`-- func
|-- _gisty
|-- prompt_wunjo_setup
`-- zgitinit

1 directory, 3 files


# Basic settings
export LANG=ja_JP.UTF-8
bindkey -e
## Complete
zstyle ':completion:*' format '%BCompletion %d%b'
zstyle ':completion:*' group-name ''
autoload -U compinit && compinit
## History
HISTFILE=$HOME/.zsh-history
HISTSIZE=100000
SAVEHIST=100000
bindkey '^p' history-beginning-search-backward
bindkey '^n' history-beginning-search-forward
## Prompt
case ${UID} in
0)
PROMPT="[%{${fg[blue]}%}%n@%m%{${reset_color}%}] %{${fg[green]}%}%{${reset_color}%} "
PROMPT2="%B%{${fg[blue]}%}%_%{${reset_color}%}%b "
SPROMPT="%B%{${fg[blue]}%}%r is correct? [n,y,a,e]:%{${reset_color}%}%b "
RPROMPT="%{${fg[green]}%}[%/]%{${reset_color}%}"
;;
*)
# Color
autoload colors
colors
DEFAULT=$'%{\e[1;0m%}'
RESET="%{${reset_color}%}"
GREEN="%{${fg[green]}%}"
BLUE=$'%{\e[1;35m%}'
RED="%{${fg[red]}%}"
CYAN="%{${fg[cyan]}%}"
#PROMPT="[%n@%m] %{${fg[blue]}%}%{${reset_color}%} "
#PROMPT2="%B%{${fg[blue]}%}%_%{${reset_color}%}%b "
#SPROMPT="%B%{${fg[blue]}%}%r is correct? [n,y,a,e]:%{${reset_color}%}%b "
#RPROMPT="%{${fg[green]}%}[%/]%{${reset_color}%}"
#
nprom () {
setopt prompt_subst
local rbase=$'%{\e[33m%}[%~]%{\e[m%}' lf=$'\n'
local pct=''
#local pct=$'%0(?||%18(?||%{\e[31m%}))%#%{\e[m%}'
#RPROMPT="%9(~||$rbase)"
case "$USER" in
yatex) PROMPT=$'%{\e[33m%}%U%m{%n}%%%{\e[m%}%u ' ;;
java) PROMPT=$'%{\e[36m%}%U%m{%n}%%%{\e[m%}%u ' ;;
*)
local pbase=$'%{\e[$[32+RANDOM%5]m%}%U%B%m{%n}%b'"$pct%u "
PROMPT="%1(~|$rbase$lf|)$pbase"
;;
esac
[[ "$TERM" = "screen" ]] && RPROMPT="$d$s$t$s$p$g"
}
nprom
# Show git branch when you are in git repository
# http://blog.s21g.com/articles/1159
_set_env_git_current_branch() {
GIT_CURRENT_BRANCH=$( git branch 2> /dev/null | grep '^\*' | cut -b 3- )
}
_update_rprompt () {
if [ "`git ls-files 2>/dev/null`" ]; then
RPROMPT="${CYAN}git[branch:$GIT_CURRENT_BRANCH]}"
else
RPROMPT="" #"%{${fg[green]}%}[%/]%{${reset_color}%}"
fi
}
precmd()
{
_set_env_git_current_branch
_update_rprompt
}
chpwd()
{
_set_env_git_current_branch
_update_rprompt
}
;;
esac
#コアダンプサイズを制限
limit coredumpsize 102400
#出力の文字列末尾に改行コードが無い場合でも表示
unsetopt promptcr
#色を使う
setopt prompt_subst
setopt nobeep
#内部コマンド jobs の出力をデフォルトで jobs -l にする
setopt long_list_jobs
# 補完候補リストを詰めて表示
setopt list_packed
setopt correct
#補完候補一覧でファイルの種別をマーク表示
setopt list_types
#サスペンド中のプロセスと同じコマンド名を実行した場合はリジューム
setopt auto_resume
#補完候補を一覧表示
setopt auto_list
#pbcopy/pbpasteでUTF-8を使う
export __CF_USER_TEXT_ENCODING=${__CF_USER_TEXT_ENCODING/:*:/:0x08000100:}
# 関数
find-grep () { find . -type f -print | xargs grep -n --binary-files=without-match $@ }
# less
export LESS='--tabs=4 --no-init --LONG-PROMPT --ignore-case'
## Alias & function
setopt complete_aliases
# ls
case "${OSTYPE}" in
freebsd*|darwin*)
alias ls="ls -G -w"
;;
linux*)
alias ls="ls --color=auto"
;;
esac
# other
alias rm='rmtrash'
alias l='ls -F'
alias la="ls -la"
alias ll='ls -ltr'
alias vi='vim'
alias gd='dirs -v; echo -n "select number: "; read newdir; cd +"$newdir"'
alias here='open .'
alias clip='nkf -w | pbcopy'
alias s="screen -U"
alias ctags='ctags -a -f .tags'
alias g=git
alias tree.='tree `pwd`'
alias p='sudo port'
h(){history $* | less}
mdcd(){mkdir -p "$@" && cd "$*[-1]"}
#Linux コマンド: - MiYaTai - Wiki http://www.ai.cs.scitec.kobe-u.ac.jp/~taiki/index.php?Linux%20%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%3A
alias pbcopy="xclipboard -selection clipboard"
alias pbpaste="xclipboard -selection clipboard -o"
# python-pip
alias pip="sudo pip --log=/var/log/python-pip.log"
# 履歴ファイルに時刻を記録
setopt extended_history
# 補完するかの質問は画面を超える時にのみに行う。
LISTMAX=0
# sudoも補完の対象
zstyle ':completion:*:sudo:*' command-path $HOME/local/bin /opt/local/bin /usr/local/sbin /usr/local/bin /usr/sbin /usr/bin /sbin /bin
# 色付きで補完する
zstyle ':completion:*' list-colors di=34 fi=0
# cdのタイミングで自動的にpushd
setopt auto_pushd
# 複数の zsh を同時に使う時など history ファイルに上書きせず追加
setopt append_history
# 補完候補が複数ある時に、一覧表示
setopt auto_list
# 補完キー(Tab, Ctrl+I) を連打するだけで順に補完候補を自動で補完
setopt auto_menu
# カッコの対応などを自動的に補完
setopt auto_param_keys
# ディレクトリ名の補完で末尾の / を自動的に付加し、次の補完に備える
setopt auto_param_slash
# 直前と同じコマンドラインはヒストリに追加しない
setopt hist_ignore_dups
#最後のスラッシュを自動的に削除しない
setopt noautoremoveslash
# 重複したヒストリは追加しない
setopt hist_ignore_all_dups
# ヒストリを呼び出してから実行する間に一旦編集できる状態になる
setopt hist_verify
# auto_list の補完候補一覧で、ls -F のようにファイルの種別をマーク表示しない
setopt NO_list_types
# コマンドラインの引数で --prefix=/usr などの = 以降でも補完できる
setopt magic_equal_subst
# ファイル名の展開でディレクトリにマッチした場合末尾に / を付加する
setopt mark_dirs
# 8 ビット目を通すようになり、日本語のファイル名を表示可能
setopt print_eight_bit
# シェルのプロセスごとに履歴を共有
setopt share_history
# Ctrl+wで、直前の/までを削除する。
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
# ディレクトリを水色にする。
export LS_COLORS='di=01;36'
# ファイルリスト補完でもlsと同様に色をつける。
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
# ディレクトリ名だけで、ディレクトリの移動をする。
setopt auto_cd
# C-s, C-qを無効にする。
setopt NO_flow_control
###functions###
# cd をしたときにlsを実行する
function chpwd() { ls }
function find-grep () { find . -type f -print | xargs grep -n --binary-files=without-match $@ }
## Screen
# termがscreenじゃなかったらattachを試し、ダメだったらnew screen
#[ "$TERM" = "screen" ] || screen -rx || screen -D -RR
#if [ "$TERM" != "screen" ]; then
# exec screen -S main -xRR
#fi
## 今使っているコマンドをwindow titleにする
if [ "$TERM" = "screen" ]; then
precmd(){
screen -X title $(basename $(print -P "%~"))
}
fi
# EmacsのM-x shellでzshを使う設定 - (rubikitch loves (Emacs Ruby CUI))
# http://d.hatena.ne.jp/rubikitch/20081102/1225601754
[[ $EMACS = t ]] && unsetopt zle
# zsh-git
# jcorbin's zsh-git at master - GitHub http://github.com/jcorbin/zsh-git/tree/master
fpath=($fpath $HOME/.zsh/func)
typeset -U fpath
# if [ $TERM = "rxvt-256color" ]; then
# preexec () {
# local -a cmd; cmd=(${(z)2})
# echo -n "^[k$cmd[1]:t^[\\"
# }
#fi
# 特定のコマンドをヒストリに追加しない
# http://d.hatena.ne.jp/mollifier/20090728/p1
zshaddhistory() {
local line=${1%%$'\n'}
local cmd=${line%% *}
# 以下の条件をすべて満たすものだけをヒストリに追加する
[[ ${#line} -ge 5
&& ${cmd} != (l|l[sal])
&& ${cmd} != (c|cd)
&& ${cmd} != (m|man)
]]
}
psgrep(){
ps aux | grep $1
}
# Gisty
GISTY_DIR=$HOME/.gist.d
## load local settings
if [ -f ~/.zshrc.local ]; then
source $HOME/.zshrc.local
fi
### thanks
# http://github.com/suztomo/dotfiles/blob/1051cf2b8779b1f5f7e5131e0f0dee6853acebf6/.zshrc
# http://gihyo.jp/dev/serial/01/zsh-book
# http://d.hatena.ne.jp/mollifier/
# vimiminsert=0 ft=zsh:
view raw .zshrc hosted with ❤ by GitHub

my .emacs

あんまりつかってない。

~/.emacs.d
|-- anything-c-adaptive-history
|-- auto-save-list
|-- inits
| |-- carbon-emacs-config.el
| `-- carbon-emacs-config.el~
|-- pymacs
| |-- BROWSE
| |-- pycomplete.py
| |-- pycomplete.pyc
| `-- s
|-- session.10a0230263117f221b124556172627762400000038860115
|-- site-lisp -> ../site-lisp
`-- snippets
`-- text-mode
|-- cc-mode
| |-- c++-mode
| | |-- beginend
| | |-- class
| | |-- ns
| | |-- template
| | `-- using
| |-- c-mode
| | `-- fopen
| |-- csharp-mode
| | |-- attrib
| | |-- attrib.1
| | |-- attrib.2
| | |-- class
| | |-- comment
| | |-- comment.1
| | |-- comment.2
| | |-- comment.3
| | |-- method
| | |-- namespace
| | |-- prop
| | |-- region
| | |-- using
| | |-- using.1
| | `-- using.2
| |-- do
| |-- for
| |-- if
| |-- inc
| |-- inc.1
| |-- main
| |-- objc-mode
| | `-- prop
| |-- once
| `-- struct
|-- css-mode
| |-- bg
| |-- bg.1
| |-- bor
| |-- cl
| |-- disp.block
| |-- disp.inline
| |-- disp.none
| |-- ff
| |-- fs
| |-- mar.bottom
| |-- mar.left
| |-- mar.mar
| |-- mar.margin
| |-- mar.right
| |-- mar.top
| |-- pad.bottom
| |-- pad.left
| |-- pad.pad
| |-- pad.padding
| |-- pad.right
| `-- pad.top
|-- email
|-- erlang-mode
| |-- after
| |-- begin
| |-- beh
| |-- case
| |-- compile
| |-- def
| |-- exp
| |-- fun
| |-- if
| |-- ifdef
| |-- ifndef
| |-- imp
| |-- inc
| |-- inc.lib
| |-- loop
| |-- mod
| |-- rcv
| |-- rcv.after
| |-- rec
| |-- try
| `-- undef
|-- f90-mode
| |-- au
| |-- bd
| |-- c
| |-- ch
| |-- cx
| |-- dc
| |-- do
| |-- dp
| |-- eq
| |-- ib
| |-- ic
| |-- ich
| |-- if
| |-- ii
| |-- il
| |-- in
| |-- inc
| |-- intr
| |-- ir
| |-- l
| |-- pa
| |-- pr
| |-- re
| |-- st
| |-- su
| `-- wr
|-- html-mode
| |-- body
| |-- br
| |-- code
| |-- code.class
| |-- dd
| |-- div
| |-- div.class
| |-- div.id
| |-- div.id-class
| |-- dl
| |-- dl.id
| |-- doctype
| |-- doctype.xhml1
| |-- doctype.xhtml1_1
| |-- doctype.xhtml1_strict
| |-- doctype.xhtml1_transitional
| |-- dt
| |-- form
| |-- h1
| |-- h2
| |-- h3
| |-- h4
| |-- h5
| |-- h6
| |-- head
| |-- hr
| |-- href
| |-- html
| |-- html.xmlns
| |-- img
| |-- input
| |-- li
| |-- li.class
| |-- link.stylesheet
| |-- link.stylesheet-ie
| |-- mailto
| |-- meta
| |-- meta.http-equiv
| |-- ol
| |-- ol.class
| |-- ol.id
| |-- p
| |-- pre
| |-- quote
| |-- script.javascript
| |-- script.javascript-src
| |-- span
| |-- span.class
| |-- span.id
| |-- style
| |-- table
| |-- td
| |-- textarea
| |-- th
| |-- title
| |-- tr
| |-- ul
| |-- ul.class
| `-- ul.id
|-- latex-mode
| `-- begin
|-- markdown-mode
| |-- +
| |-- -
| |-- _
| |-- __
| |-- `
| |-- h1.1
| |-- h1.2
| |-- h2.1
| |-- h2.2
| |-- h3
| |-- h4
| |-- h5
| |-- h6
| |-- hr.1
| |-- hr.2
| |-- img
| |-- link
| |-- ol
| |-- rimg
| |-- rlb
| `-- rlink
|-- nxml-mode
| |-- body
| |-- br
| |-- code
| |-- div
| |-- doctype
| |-- doctype.xhtml1_strict
| |-- doctype.xhtml1_transitional
| |-- form
| |-- h1
| |-- h2
| |-- h3
| |-- h4
| |-- h5
| |-- h6
| |-- head
| |-- hr
| |-- href
| |-- html
| |-- img
| |-- input
| |-- li
| |-- link
| |-- meta
| |-- name
| |-- ol
| |-- p
| |-- pre
| |-- quote
| |-- span
| |-- style
| |-- table
| |-- tag.1l
| |-- tag.2l
| |-- td
| |-- th
| |-- title
| |-- tr
| `-- ul
|-- perl-mode
| |-- cperl-mode
| |-- eval
| |-- for
| |-- fore
| |-- if
| |-- ife
| |-- ifee
| |-- sub
| |-- unless
| |-- while
| |-- xfore
| |-- xif
| |-- xunless
| `-- xwhile
|-- python-mode
| |-- __
| |-- class
| |-- def
| |-- defm
| |-- for
| |-- ifmain
| |-- propg
| |-- propsg
| `-- while
|-- rst-mode
| |-- chap
| |-- sec
| `-- tit
|-- ruby-mode
| |-- #
| |-- =b
| |-- Comp
| |-- all
| |-- am
| |-- any
| |-- app
| |-- bm
| |-- case
| |-- cla
| |-- classify
| |-- cls
| |-- collect
| |-- dee
| |-- deli
| |-- det
| |-- dow
| |-- ea
| |-- eac
| |-- eai
| |-- eav
| |-- eawi
| |-- forin
| |-- if
| |-- ife
| |-- inject
| |-- mm
| |-- r
| |-- rb
| |-- reject
| |-- req
| |-- rreq
| |-- rw
| |-- select
| |-- tim
| |-- until
| |-- upt
| |-- w
| |-- when
| |-- while
| |-- y
| `-- zip
|-- scala-mode
| |-- act
| |-- act.arg
| |-- actor
| |-- ano
| |-- app
| |-- arr.new
| |-- arr.val-new
| |-- asof
| |-- ass
| |-- ass.true
| |-- at.author
| |-- at.param
| |-- at.return
| |-- at.version
| |-- bang
| |-- case
| |-- case.match-all
| |-- cast
| |-- cc
| |-- cl
| |-- cl.abs
| |-- cl.abs-arg
| |-- cl.arg
| |-- clof
| |-- co
| |-- cons
| |-- cons.nil
| |-- def.arg
| |-- def.arg-body
| |-- def.arg-ret
| |-- def.arg-ret-body
| |-- def.body
| |-- def.ret
| |-- def.ret-body
| |-- def.simple
| |-- doc.class
| |-- doc.def
| |-- doc.file
| |-- doc.file-scala
| |-- doc.file-scala-api
| |-- doc.scaladoc
| |-- expect
| |-- ext
| |-- for.extract
| |-- for.if
| |-- for.loop
| |-- for.multi
| |-- foreach
| |-- hmap.new
| |-- hmap.val-new
| |-- hset.new
| |-- hset.val-new
| |-- if
| |-- if.else
| |-- imp
| |-- intercept
| |-- isof
| |-- ls.new
| |-- ls.val-new
| |-- main
| |-- map
| |-- map.new
| |-- match
| |-- match.can
| |-- match.option
| |-- mix
| |-- ob
| |-- pac
| |-- pr.newline
| |-- pr.simple
| |-- pr.string
| |-- pr.trace
| |-- pri
| |-- pri.param
| |-- pro
| |-- pro.param
| |-- suite
| |-- test
| |-- throw
| |-- tr
| |-- tr.ext
| |-- tr.ext-with
| |-- tr.with
| |-- try
| |-- try.catch-finally
| |-- try.finally
| |-- tup.arrow
| |-- tup.paren
| |-- val
| |-- val.new
| |-- val.ret
| |-- var
| |-- var.new
| |-- var.ret
| |-- whi
| `-- with
|-- sql-mode
| |-- column
| |-- constraint
| |-- constraint.1
| |-- create
| |-- create.1
| `-- references
`-- time

25 directories, 396 files

~/.emacs.d/site-lisp
|-- ac-dabbrev.el
|-- anything-config.el
|-- anything-etags.el
|-- anything-gtags.el
|-- anything-match-plugin.el
|-- anything-yaetags.el
|-- anything.el
|-- auto-complete.el
|-- grep-edit.el
|-- init-loader.el
|-- install-elisp.el
|-- migemo.el
|-- pymacs.el
|-- revive.el
|-- rst.el
|-- rst.elc
|-- sense-region.el
|-- windows.el
`-- yasnippet.el

0 directories, 19 files



;;; arch
;; .emacs で OS の判定を関数化しよう - msshの日記 http://d.hatena.ne.jp/mssh/20081208/1228742294
(defvar os-type nil)
(cond ((string-match "apple-darwin" system-configuration) ;; Mac
(setq os-type 'mac))
((string-match "linux" system-configuration) ;; Linux
(setq os-type 'linux))
((string-match "freebsd" system-configuration) ;; FreeBSD
(setq os-type 'bsd))
((string-match "mingw" system-configuration) ;; Windows
(setq os-type 'win)))
(defun mac? ()
(eq os-type 'mac))
(defun linux? ()
(eq os-type 'linux))
(defun bsd? ()
(eq os-type 'freebsd))
(defun win? ()
(eq os-type 'win))
;;;; Font settings
(set-language-environment "English")
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-buffer-file-coding-system 'utf-8)
(setq default-buffer-file-coding-system 'utf-8)
(prefer-coding-system 'utf-8)
(set-default-coding-systems 'utf-8)
;;;; View settings
(if window-system (progn
(set-background-color "Black")
(set-foreground-color "Green")
(set-face-foreground 'font-lock-comment-face "dark orange")
(set-face-foreground 'font-lock-string-face "slateGray1")
(set-face-foreground 'font-lock-keyword-face "violet")
(set-face-foreground 'font-lock-constant-face "yellow")
(set-face-foreground 'font-lock-function-name-face "maroon2")
(set-face-foreground 'font-lock-variable-name-face "deep sky blue")
(set-face-foreground 'font-lock-type-face "wheat1")
(set-face-foreground 'font-lock-warning-face "violet")
(set-face-bold-p 'font-lock-function-name-face t)
(set-face-bold-p 'font-lock-warning-face nil)
(set-cursor-color "Gray")
(set-frame-parameter nil 'alpha 80)
))
(setq inhibit-startup-message t)
;; (tool-bar-mode nil)
(set-scroll-bar-mode nil)
(line-number-mode t)
;; hightlight cursor line
;; http://blog.iwa-ya.net/2009/06/21/093100
(defface hlline-face
'((((class color)
(background dark))
;;(:background "dark state gray"))
(:background "gray10"
:underline "gray24"))
(((class color)
(background light))
(:background "ForestGreen"
:underline nil))
(t ()))
"*Face used by hl-line.")
(setq hl-line-face 'hlline-face)
;;(setq hl-line-face 'underline)
(global-hl-line-mode)
;; Full screen
(defun toggle-fullscreen ()
(interactive)
(set-frame-parameter nil 'fullscreen
(if (frame-parameter nil 'fullscreen) nil 'fullboth)))
(if window-system
(progn
(setq default-frame-alist
(append
'((width . 150) (height . 70)
(background-color . "Black")
)
default-frame-alist))))
;====================================
;====================================
(defface my-face-b-1 '((t (:background "medium aquamarine"))) nil)
(defface my-face-b-1 '((t (:background "dark turquoise"))) nil)
(defface my-face-b-2 '((t (:background "cyan"))) nil)
(defface my-face-b-2 '((t (:background "SeaGreen"))) nil)
(defface my-face-u-1 '((t (:foreground "SteelBlue" :underline t))) nil)
(defvar my-face-b-1 'my-face-b-1)
(defvar my-face-b-2 'my-face-b-2)
(defvar my-face-u-1 'my-face-u-1)
(defadvice font-lock-mode (before my-font-lock-mode ())
(font-lock-add-keywords
major-mode
'(
(" " 0 my-face-b-1 append)
("\t" 0 my-face-b-2 append)
("[ ]+$" 0 my-face-u-1 append)
)))
;;;; Key settings
;; Ctrl-h
(keyboard-translate ?\C-h ?\C-?)
(global-set-key "\C-h" nil)
(global-set-key "\M-h" 'help-command)
(setq mac-command-modifier 'meta)
(setq mac-control-modifier 'control)
(setq mac-option-modifier 'alt)
;;; Core settings
(auto-compression-mode t)
(recentf-mode 1)
(pc-selection-mode 1)
(setq show-paren-mode 1)
(setq c-tab-always-indent t)
(setq default-tab-width 4)
(setq indent-line-function 'indent-relative-maybe)
;;(ad-enable-advice 'font-lock-mode 'before 'my-font-lock-mode)
;;(ad-activate 'font-lock-mode)
;;(add-hook 'find-file-hooks '(lambda ()
;; (if font-lock-mode
;; nil
;; (font-lock-mode t))))
(setq frame-title-format (format "emacs@%s : %%f" (system-name)))
;;;; Key settings
(define-key minibuffer-local-filename-completion-map
" " 'minibuffer-complete-word)
(define-key minibuffer-local-must-match-filename-map
" " 'minibuffer-complete-word)
;; Plugins load
(defun my-load-path (path)
(let ((epath (expand-file-name path)))
(unless (member epath load-path)
(setq load-path (cons epath load-path)))))
(my-load-path "~/.emacs.d/site-lisp")
(my-load-path "/usr/share/emacs/site-lisp/ddskk")
(my-load-path "/usr/share/emacs/site-lisp")
(my-load-path "/usr/share/emacs/site-lisp/howm")
;(my-load-path "/Applications/MacPorts/Emacs.app/Contents/Resources/lisp")
;; howm
(require 'howm)
;; rst.el
;; Emacs で ReStructuredText - SPEAKER BREAKA
;; http://d.hatena.ne.jp/namaco35/20090526/1243355997
(require 'rst)
(setq auto-mode-alist
(append '(("\\.txt$" . rst-mode)
("\\.howm$" . rst-mode)
("\\.rst$" . rst-mode)
("\\.rest$" . rst-mode)) auto-mode-alist))
(add-hook 'rst-adjust-hook 'rst-toc-update)
(add-hook 'rst-mode-hook
(lambda ()
(setq rst-slides-program "open -a Firefox")
))
;;(require 'vc-git)
;;(require 'git-emacs)
;;(require 'git-blame)
(require 'grep-edit)
;;;; ddskk
;(require 'skk) (setq skk-large-jisyo"/usr/share/skk/SKK-JISYO.L")
;;;;;;;;;;;;;;
; GUNU Linux
;;;;;;;;;;;;;;
;; uim
;(cond
;((string-match "linux" system-configuration)
; (my-load-path "/usr/share/emacs/site-lisp/uim")
; (require 'uim)
; (global-set-key "\C-o" 'uim-mode)
;))
(autoload 'ansi-color-for-comint-mode-on "ansi-color"
"Set `ansi-color-for-comint-mode' to t." t)
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)
;; auto-complete
(require 'auto-complete)
(global-auto-complete-mode t)
(require 'ac-dabbrev)
(setq ac-sources
(list ac-source-dabbrev))
;; Filetype
;; php-mode
(add-hook 'php-mode-hook
(lambda ()
(require 'php-completion)
(php-completion-mode t)
(define-key php-mode-map (kbd "C-o") 'phpcmp-complete)
(when (require 'auto-complete nil t)
(make-variable-buffer-local 'ac-sources)
(add-to-list 'ac-sources 'ac-source-php-completion)
(auto-complete-mode t))))
;; js2-mode
;(autoload 'js2-mode "js2" nil t)
;(add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
;(add-to-list 'auto-mode-alist '("\\.json$" . js2-mode))
;; http://8-p.info/emacs-javascript.html
;(setq-default c-basic-offset 4)
;(when (load "js2" t)
; (setq js2-cleanup-whitespace nil
; js2-mirror-mode nil
; js2-bounce-indent-flag nil)
; (defun indent-and-back-to-indentation ()
; (interactive)
; (indent-for-tab-command)
; (let ((point-of-indentation
; (save-excursion
; (back-to-indentation)
; (point))))
; (skip-chars-forward "\s " point-of-indentation)))
;
; (define-key js2-mode-map "\C-i" 'indent-and-back-to-indentation)
; (define-key js2-mode-map "\C-m" nil))
;; java-mode
(add-hook 'java-mode-hook
'(lambda ()
(c-set-style "stroustrup")
(setq tab-width 4)
(setq indent-tabs-mode nil)
))
;;;; Python settings
(require 'python)
;; pymacs
;(require 'pymacs)
;(autoload 'pymacs-apply "pymacs")
;(autoload 'pymacs-call "pymacs")
;(autoload 'pymacs-eval "pymacs" nil t)
;(autoload 'pymacs-exec "pymacs" nil t)
;(autoload 'pymacs-load "pymacs" nil t)
;(eval-after-load "pymacs"
; '(add-to-list 'pymacs-load-path "~/.emacs.d/pymacs/"))
;; python-mode, pycomplete
;(setq auto-mode-alist (cons '("\\.py$" . python-mode) auto-mode-alist))
;(add-to-list 'interpreter-mode-alist '("python" . python-mode))
;(setq interpreter-mode-alist (cons '("python" . python-mode)
; interpreter-mode-alist))
;(autoload 'python-mode "python-mode" "Python editing mode." t)
;(add-hook 'python-mode-hook '(lambda ()
; (require 'pycomplete)
; ))
;; ropemacs
;;(pymacs-load "ropemacs" "rope-")
;;(setq ropemacs-enable-autoimport t)
;(require 'ipython)
;(setq ipython-command "/opt/local/bin/ipython"))
; (require 'pysmell)
;(add-hook 'python-mode-hook (lambda () (pysmell-mode 1)))
;(add-hook 'python-mode-hook
; '(lambda ()
; (define-key python-mode-map "\C-m" 'newline-and-indent)
; (define-key python-mode-map "\M-\"" 'electric-pair)
; (define-key python-mode-map "\M-\'" 'electric-pair)
; (define-key python-mode-map "\M-[" 'electric-pair)
; (define-key python-mode-map "\M-{" 'electric-pair)
; (define-key python-mode-map "\M-(" 'electric-pair)
; (define-key inferior-python-mode-map "\t" 'python-complete-symbol)
; ))
;(defvar ac-source-pysmell
; '((candidates
; . (lambda ()
; (require 'pysmell)
; (pysmell-get-all-completions))))
; "Source for PySmell")
;
;(add-hook 'python-mode-hook
; '(lambda ()
; (set (make-local-variable 'ac-sources) (append ac-sources '(ac-source-pysmell)))))
;;scheme-complete
;(require 'scheme-complete)
;(eval-after-load 'scheme
; '(progn
; (setq scheme-default-implementation 'gauche)
; (setq *scheme-current-implementation* 'gauche)
; ;; scheme-smart-complete: M-TAB
; (define-key scheme-mode-map "\C-t" 'scheme-smart-complete)
; ;; scheme-complete-or-indent: TAB
; (define-key scheme-mode-map "\t" 'scheme-complete-or-indent))
;)
;(add-hook 'scheme-mode-hook
;(lambda ()
;(setq default-scheme-implementation 'gauche)
;(setq *current-scheme-implementation* 'gauche)
;; eldoc-mode
;;(setq (make-local-variable 'eldoc-documentation-function)
; 'scheme-get-current-symbol-info)
;(eldoc-mode t)
;)
;; install-elisp.el *package installer
(require 'install-elisp)
(setq install-elisp-repository-directory "~/.emacs.d/site-lisp")
;; migemo
(load "migemo.el")
(setq migemo-command "/opt/local/bin/cmigemo")
(setq migemo-options '("-q" "--emacs" "-i" "¥a"))
(setq migemo-dictionary (expand-file-name "~/local/migemo/migemo-dict"))
;(setq migemo-dictionary "/opt/local/share/migemo/utf-8/migemo-dict")
(setq migemo-user-dictionary nil)
(setq migemo-regex-dictionary nil)
;; anything
(require 'anything)
(require 'anything-config)
(require 'anything-match-plugin)
(setq anything-sources (list anything-c-source-buffers+
anything-c-source-bookmarks
anything-c-source-recentf
anything-c-source-buffer-not-found
anything-c-source-imenu
anything-c-source-file-name-history
anything-c-source-locate))
(setq imenu-auto-rescan t)
(define-key anything-map (kbd "C-p") 'anything-previous-line)
(define-key anything-map (kbd "C-n") 'anything-next-line)
(define-key anything-map (kbd "C-v") 'anything-next-source)
(define-key anything-map (kbd "M-v") 'anything-previous-source)
(global-set-key (kbd "C-;") 'anything)
(require 'anything-etags)
(add-to-list 'anything-sources 'anything-c-source-etags-select)
(require 'anything-yaetags)
(add-to-list 'anything-sources 'anything-c-source-yaetags-select)
(global-set-key (kbd "M-.") 'anything-yaetags-find-tag)
;; session
(when (locate-library "session")
(setq session-globals-max-size 512)
(setq session-globals-regexp "-\\(ring\\|history\\|hist\\)\\'")
(require 'session)
(defadvice find-alternate-file
(before session-store-buffer-places last activate)
"Invoke session-kill-buffer-hook."
(session-kill-buffer-hook))
(add-to-list 'session-kill-buffer-commands 'find-alternate-file)
(add-hook 'after-init-hook 'session-initialize))
(when (locate-library "minibuf-isearch")
(setq minibuf-isearch-indicator-string nil)
(setq minibuf-isearch-display-message-always t)
(setq minibuf-isearch-match-format-string "[isearch with '%s']")
(setq minibuf-isearch-no-match-format-string "[No further match with '%s']")
(setq minibuf-isearch-message-on-right t)
(setq history-length 128)
(require 'minibuf-isearch))
;; window
;(require 'windows)
;(setq win:use-frame nil)
;(win:startup-with-window)
;(define-key ctl-x-map "C" 'see-you-again)
;; sense-region.el
;(autoload 'sense-region-on "sense-region"
; "System to toggle region and rectangle." t nil)
;(sense-region-on)
;; emacs23 用設定
;(cond ( (string-match "^23\." emacs-version)
; (cond (window-system
; (set-default-font "Bitstream Vera Sans Mono-12")
; (set-fontset-font (frame-parameter nil 'font)
; 'japanese-jisx0208
; '("IPA モナー ゴシック" . "unicode-bmp"))
; ))
;))
;; init-loader
(require 'init-loader)
(init-loader-load (expand-file-name "~/.emacs.d/inits"))
;; yasnippet.el
(require 'yasnippet)
(setq yas/trigger-key (kbd "C-c <kp-multiply>"))
(yas/initialize)
(yas/load-directory "~/.emacs.d/snippets")
(put 'upcase-region 'disabled nil)
view raw .emacs hosted with ❤ by GitHub