-
Archives
- February 2012
- January 2012
- December 2011
- September 2011
- August 2011
- June 2011
- January 2011
- December 2010
- November 2010
- October 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- January 2009
- November 2008
- September 2008
- August 2008
- July 2008
- March 2008
- February 2008
- January 2008
-
Meta
Tag Archives: vim
Vim set file encoding
:set bomb :set fileencoding=utf-8
Vim: set Caps Lock as Ctrl, set Pause as Caps Lock, let Esc be Esc
raymond@ubuntu:~$ cat .Xmodmap remove Lock = Caps_Lock remove Control = Control_L keysym Caps_Lock = Control_L keysym Pause = Caps_Lock add Lock = Caps_Lock add Control = Control_L
ctags for php
$ cd /path/to/phpcode $ ctags -f /output/tags \ -h “.php” -R \ –exclude=”\.svn” \ –totals=yes \ –tag-relative=yes \ –PHP-kinds=+cf \ –regex-PHP=’/abstract class ([^ ]*)/\1/c/’ \ –regex-PHP=’/interface ([^ ]*)/\1/c/’ \ –regex-PHP=’/(public |static |abstract |protected |private )+function ([^ (]*)/\2/f/’ exuberant ctags with … Continue reading