Preferences の Key Bindings – Userを開いて、下記の内容を追加して、ショートカットを追加します。
Editのメニューからも実行できます。
1 |
{ "keys": ["ctrl+shift+t"], "command": "delete_trailing_spaces" } |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
Vimのメモです。
phpをVimで書いているので、その際AutoCompleteを設定しているのですが、地味に迷ったのでメモしておきます。
hgはインストールしておいてください。
1 2 3 |
$ cd ~/./vim/bundle/ $ hg clone https://bitbucket.org/ns9tks/vim-autocomplpop $ hg clone https://bitbucket.org/ns9tks/vim-l9 |
1 2 3 |
$ vi ~/.vimrc "autocomplete :set omnifunc=phpcomplete#CompletePHP |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
http://www.vim.org/scripts/script.php?script_id=1886
上記のサイトからnginxのSyntaxをDLしてくる
1 2 3 4 5 |
$ mv nginx.vim ./usr/share/vim/vim70/syntax/ or $ mv nginx.vim .vim/syntax/ $ vi ~.vim/filetype.vim au BufRead,BufNewFile /etc/nginx/conf.d/* set ft=nginx |
で完了
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
EmacsのElsipをバイトコンパイルして読み込みを早くさせる方法があることを知ったのでメモしておきます。
[php]
M-x byte-compile-file RET
~/.emcas.d/elisp/対象のlisp
[/php]
上記コマンドを実行すると~/.emcas.d/elisp/の中に.elcと言うファイルができます。
もし.elファイルの内容を書き換えた場合は、もう一度コンパイルしないといけないのであしからず。
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
最近設置した自宅サーバにemacsの23.3をインストールした際もメモ
yumでインストールすると、emacs21になるので、TrueTypeフォントの綺麗さに慣れているので、最新版をインストールしました。
[php]
# wget http://ftp.gnu.org/pub/gnu/emacs/emacs-23.2.tar.gz
# tar zxvf emacs-23.2.tar.gz
# cd ./emacs-23.2
# ./configure –without-x
# make
# make install
# emacs –version
GNU Emacs 23.2.1
Copyright (C) 2010 Free Software Foundation, Inc.
[/php]
無事インストールは完了。
注意:事前にgcc、anthy-elなどの各種ライブラリはインストールしてある状況でのインストール方法です。
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 7 | Pocket: 0 | Total: 7 | Feedly: 0
なるほど、こうすればいいのか。
1 2 3 4 5 6 7 8 9 10 11 |
Ctrl + x ↓ d  ↓ RET  ↓ +  ↓ ディレクトリ名を入力  ↓ RET |
他にもいろいろできるようです。
http://homepage3.nifty.com/kaku-chan/emacs/dir_edit/index.html
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 7 | Pocket: 4 | Total: 11 | Feedly: 0
文字コードを指定して開く
1 |
C-x RET c 文字コードを入力 RET C-x C-f |
開きなおす
1 |
C-x RET c 文字コードを入力 RET C-x C-v RET |
現在の文字コードの設定を確認したい場合は
1 |
M-x describe-coding-system |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 7 | Pocket: 2 | Total: 9 | Feedly: 0
最近、Cakephpで開発するようになったので、.emacsに下記の内容を追加と修正
1 2 3 4 5 6 7 8 9 10 11 12 13 |
;;php-modeの読み込み (load-library "php-mode") (require 'php-mode) ;;;php-mode時のタブの調整 (add-hook 'php-mode-hook '(lambda () (setq tab-width 2))) ;; 拡張子が*.tplと*.incはphp-modeにする (add-to-list 'auto-mode-alist '("\.tpl$" . php-mode)) (add-to-list 'auto-mode-alist '("\.inc$" . php-mode)) (add-to-list 'auto-mode-alist '("\.ctp$" . php-mode)) <span>この一行を追加</span> ;;;php-modeの時は文字コードをEUC-JPにする (add-hook 'php-mode-hook '(lambda () (set-default-coding-systems 'utf-8))) (add-hook 'php-mode-hook '(lambda () (set-buffer-file-coding-system 'utf-8))) (add-hook 'php-mode-hook '(lambda () (set-terminal-coding-system 'utf-8))) |
cakephpにまったく関係ないけど、ついでに修正
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
(create-fontset-from-request "private-fontset" '((width . 8) (height . 16) (fixed . t) (italic . nil)) '((family . "VL ゴシック") (family . "Lucida Console"))) (change-fontset-from-request "private-fontset" '((width . 8) (height . 16) (fixed . t) (italic . nil)) '((family . "VL ゴシック") (family . "Courier New")) 1) (setq default-frame-alist (append (list '(font . "private-fontset") ; フォントセット ) default-frame-alist)) |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 4 | Pocket: 0 | Total: 4 | Feedly: 0
最近開発に、Netbeans6.7を使っているんですがDBのER図を提出しなくていけなくなったので、プラグインを探していて、NetBeans UML® Projectからプラグインを発見したので、そのメモです。
まずぼくのNetbeans6.7は、JAVAの環境がJREで動いているので、インストールできないとのこと
なので、JDKをインストール
http://java.sun.com/javase/ja/6/download.html
からJDK6をダウンロードします。
さっそくインストロール
ファイルの場所は、C:Program FilesNetBeans 6.7etcnetbeans.conf
下記の内容で書き換えました。
1 2 3 4 5 |
netbeans_jdkhome="C:Program FilesJavajre6"  ↓ #netbeans_jdkhome="C:Program FilesJavajre6" 追加 netbeans_jdkhome="C:Program FilesJavajdk1.6.0_14 |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
Sorry. No data so far.