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
| " Vim syntax file | |
| " Language: LESS Cascading Style Sheets | |
| " Maintainer: Leaf Corcoran <[email protected]> | |
| " Modifier: Bryan J Swift <[email protected]> | |
| " URL: http://leafo.net/lessphp/vim/less.vim | |
| " URL: http://gist.github.com/161047 | |
| " Last Change: 2009 August 4 | |
| " LESS by Leaf Corcoran | |
| " CSS2 by Nikolai Weibull | |
| " Full CSS2, HTML4 support by Yeti |
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
| " everything source for unite.vim | |
| " Version: 0.0.1 | |
| " Last Change: 01 Dec 2010 | |
| " Author: sgur <sgurrr at gmail.com> | |
| " Licence: The MIT License {{{ | |
| " Permission is hereby granted, free of charge, to any person obtaining a copy | |
| " of this software and associated documentation files (the "Software"), to deal | |
| " in the Software without restriction, including without limitation the rights | |
| " to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| " copies of the Software, and to permit persons to whom the Software is |
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
| " original: http://github.com/Rip-Rip/clang_complete | |
| " File: clang_complete.vim | |
| " Author: Xavier Deguillard <[email protected]> | |
| " Modified by: eagletmt <[email protected]> | |
| " | |
| " Description: Use of clang to complete in C/C++. | |
| " | |
| " Configuration: Each project can have a .clang_complete at his root, | |
| " containing the compiler options. This is useful if |
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
| "============================================================================= | |
| " FILE: everything.vim | |
| " Last Modified: 28 Oct 2010 | |
| " Description: everything のコマンドラインインタフェース(es.exe)を利用し、 | |
| " NTFSボリュームの全てのファイルを瞬時にUniteから使うためのsource | |
| " Requirement: everything.exe | |
| " : es.exe in $PATH | |
| "============================================================================= | |
| function! unite#sources#everything#define()"{{{ |
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 exists("g:loaded_nerdtree_unite_filerec") | |
| finish | |
| endif | |
| let g:loaded_nerdtree_unite_filerec = 1 | |
| if !exists(':Unite') | |
| echoerr 'This plugin requires unite.vim' | |
| finish | |
| 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 -Nru src.org/Make_bc5.mak src/Make_bc5.mak | |
| --- src.org/Make_bc5.mak 2004-05-19 00:55:41.000000000 +0900 | |
| +++ src/Make_bc5.mak 2005-02-08 10:56:09.000000000 +0900 | |
| @@ -403,6 +403,12 @@ | |
| DEFINES = $(DEFINES) -DNBDEBUG | |
| NBDEBUG_DEP = nbdebug.h nbdebug.c | |
| !endif | |
| + | |
| +!if ("$(IMC)"=="yes") | |
| +DEFINES = $(DEFINES) -DFEAT_IM_CUSTOM -DFEAT_SKK -DFEAT_POBOX |
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
| " Vim color file | |
| " | |
| " " __ _ _ _ " | |
| " " \ \ ___| | |_ _| |__ ___ __ _ _ __ ___ " | |
| " " \ \/ _ \ | | | | | _ \ / _ \/ _ | _ \/ __| " | |
| " " /\_/ / __/ | | |_| | |_| | __/ |_| | | | \__ \ " | |
| " " \___/ \___|_|_|\__ |____/ \___|\____|_| |_|___/ " | |
| " " \___/ " | |
| " | |
| " "A colorful, dark color scheme for Vim." |
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
| " Assumption: This script is executed by gVim. | |
| function! s:css_property_from(vim_attribute) | |
| if a:vim_attribute ==# 'bold' || a:vim_attribute ==# 'standout' | |
| return 'font-weight: bolder;' | |
| elseif a:vim_attribute ==# 'underline' | |
| return 'text-decoration: underline;' | |
| elseif a:vim_attribute ==# 'undercurl' | |
| return 'border-bottom: thin dashed;' |
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
| autocmd BufNewFile,BufRead *.tx setfiletype xslate | |
| autocmd BufNewFile,BufRead *.html if search('^: ') > 0 | set filetype=xslate | 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
| if !has('conceal') | |
| finish | |
| endif | |
| set conceallevel=2 | |
| syntax match perlLambda +\(=\s*\)\@<=sub+ conceal cchar=λ |