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
fun! s:SelectColorS() | |
50vnew | |
setlocal bufhidden=wipe buftype=nofile nonu fdc=0 | |
file ColorSchemeSelector | |
let files = split(glob(expand('~/.vim/colors/').'*')) | |
for file in files | |
let name = matchstr( file , '\w\+\(\.vim\)\@=' ) | |
if strlen(name) > 0 | |
put=name | |
endif |
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
#!/bin/sh | |
#----------------------------------------------------------- | |
# Config | |
#----------------------------------------------------------- | |
VERSION='7.2' | |
HOST_NAME="ftp.vim.org" # FTP Server | |
USER_NAME="anonymous" # FTP User | |
PASSWORD="hoge" # FTP Password |
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
#!/bin/sh | |
VER=7.3 | |
PREFIX="${HOME}/local" | |
HOST="ftp://ftp.vim.org/" | |
URL="${HOST}pub/vim" | |
PATCHS_DIR="pub/vim/patches/${VER}" | |
PATCH_LIST='list.txt' | |
VER_FILE='patch_version' |
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
<?php | |
/** | |
* | |
* AppEmailComponent (for Japanese) | |
* | |
* Copyright 2010, nojimage (http://php-tips.com/) | |
* | |
* Licensed under The MIT License | |
* Redistributions of files must retain the above copyright notice. | |
* |
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
# | |
# Titanium mobile Rakefile for iPhone build | |
# | |
DEV_PROVISIONING_UUID = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | |
DEV_SIGN = "Developer name" | |
DEV_APP_NAME = "DevApp" | |
DEV_APP_ID = 'com.example.dev' | |
TITANIUM_SDK_VERSION = '1.3.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
#!/bin/sh | |
# | |
# phpの切り替え | |
# | |
# pearのエイリアス設定(.zshrc or .bashrc) | |
# alias pear='pear -C /usr/local/php/etc/pear.conf $@' | |
# | |
PHP_LIB="/usr/local" |
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
if has('gui_macvim') && has('kaoriya') | |
let s:ruby_libdir = system("ruby -rrbconfig -e 'print Config::CONFIG[\"libdir\"]'") | |
let s:ruby_libruby = s:ruby_libdir . '/libruby.dylib' | |
if filereadable(s:ruby_libruby) | |
let $RUBY_DLL = s:ruby_libruby | |
endif | |
endif |
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
diff -uBb csstidy-source-1.4.org/csstidy/main.cpp csstidy-source-1.4/csstidy/main.cpp | |
--- csstidy-source-1.4.org/csstidy/main.cpp 2007-07-10 10:20:54.000000000 +0900 | |
+++ csstidy-source-1.4/csstidy/main.cpp 2011-02-23 01:04:12.000000000 +0900 | |
@@ -73,6 +73,21 @@ | |
predefined_templates["low"].push_back("</span>\n"); //after comment | |
predefined_templates["low"].push_back("\n"); // after last line @-rule | |
+ predefined_templates["opp"].push_back("<span class=\"at\">"); | |
+ predefined_templates["opp"].push_back("</span> <span class=\"format\">{</span>\n"); | |
+ predefined_templates["opp"].push_back("<span class=\"selector\">"); |
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
/* | |
* jquery.smarthistory.js | |
* | |
* Copyright (c) 2010 Kazuhito Hokamura | |
* Licensed under the MIT License: | |
* http://www.opensource.org/licenses/mit-license.php | |
* | |
* @author Kazuhito Hokamura (http://webtech-walker.com/) | |
* @version 0.0.1 | |
* |
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
# zaw.zsh source for the elements of the directory stack. | |
# https://github.com/nakamuray/zaw | |
# Thank you very much, nakamuray! | |
zmodload zsh/parameter | |
function zaw-src-dirstack() { | |
: ${(A)candidates::=$dirstack} | |
actions=("zaw-callback-execute" "zaw-callback-replace-buffer" "zaw-callback-append-to-buffer") | |
act_descriptions=("execute" "replace edit buffer" "append to edit buffer") |