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
[alias] | |
uptodate = !git submodule foreach "git fetch;git checkout origin/master" |
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
let g:quickrun_config = { } | |
let g:quickrun_config['cs'] = { | |
\ 'command' : 'csc', | |
\ 'runmode' : 'simple', | |
\ 'exec' : ['%c /nologo %s:gs?/?\\? > /dev/null', '"%S:p:r:gs?/?\\?.exe" %a', ':call delete("%S:p:r.exe")'], | |
\ 'tempfile' : '{tempname()}.cs', | |
\ } | |
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
@@ -577,10 +577,13 @@ function! s:Runner.build_command(tmpl) " {{{2 | |
" TODO: Add rules. | |
" FIXME: Possibility to be multiple expanded. | |
let config = self.config | |
let shebang = self.detect_shebang() | |
let src = string(self.source_name) | |
+ if s:is_win && &shellslash && match(&shell, 'sh') < 0 | |
+ let src = substitute(src, '/', '\\', 'g') | |
+ endif | |
let rule = [ |
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
export GTK_IM_MODULE=ibus | |
export XMODIFIERS=@im=ibus | |
export QT_IM_MODULE=ibus | |
export XIM_PROGRAM=/usr/bin/ibus-daemon |
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: changelog.vim | |
" Last Modified: 2010-11-21 | |
" | |
" Licensed under the MIT license: | |
" http://www.opensource.org/licenses/mit-license.php | |
" | |
"============================================================================= | |
function! unite#sources#outline#changelog#outline_info() |
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
" expect 'vim --startuptime "%TEMP%\vim_startuptime.log"' | |
let s:startup_logfile = 'vim_startuptime.log' | |
function! s:GetStartupTime() | |
let startup_logpath = expand('$TEMP') . '/' . s:startup_logfile | |
if filereadable(startup_logpath) | |
let startup_file = readfile(startup_logpath) | |
return matchstr(startup_file[len(startup_file)-1], '^[0-9-.]\+') | |
endif | |
return 0 | |
endfunction |
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
[merge] | |
tool = p4merge | |
[diff] | |
tool = p4merge | |
[difftool "p4merge"] | |
path = c:/Program Files/Perforce/p4merge.exe | |
cmd = \"c:/Program Files/Perforce/p4merge.exe\" \"$LOCAL\" \"$REMOTE\" | |
[mergetool "p4merge"] | |
path = c:/Program Files/Perforce/p4merge.exe | |
cmd = \"c:/Program Files/Perforce/p4merge.exe\" \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\" |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<gdipp> | |
<version>0.9.1</version> | |
<gdimm> | |
<process> | |
<freetype> | |
<cache_max_faces>8</cache_max_faces> | |
<cache_max_sizes>16</cache_max_sizes> | |
<cache_max_bytes>1048576</cache_max_bytes> |
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
echo 'executable():' executable('ctags') | |
echo 'system():' system('ctags --help') | |
echo 'vimproc#system()' vimproc#system('ctags --help') | |
finish | |
" ↑ の結果。 | |
executable(): 1 |
OlderNewer