This file contains 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
function! unite#sources#outline#taskpaper#outline_info() | |
return s:outline_info | |
endfunction | |
let s:outline_info = { | |
\ 'heading': '^.\+:\(\s\+@[^ \t(]\+\(([^)]*)\)\?\)*$' | |
\ } | |
function! s:outline_info.create_heading(which, heading_line, matched_line, context) | |
let heading = { |
This file contains 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
--- kiklib/configure.orig 2013-03-23 21:40:00.000000000 +0900 | |
+++ kiklib/configure 2013-04-15 19:58:13.000000000 +0900 | |
@@ -19839,7 +19839,7 @@ | |
DL_LIBS="${DL_LIBS} ${lt_cv_dlopen_libs}" | |
# NSLinkModule (darwin) | |
ac_fn_c_check_func "$LINENO" "NSLinkModule" "ac_cv_func_NSLinkModule" | |
-if test "x$ac_cv_func_NSLinkModule" = x""yes; then : | |
+if test "$DL_LOADER" = none && test "x$ac_cv_func_NSLinkModule" = x""yes; then : | |
DL_LOADER=dyld |
This file contains 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
" | |
" Settings | |
" | |
let fullpagescrollpercent = 95 | |
let scrollduration = 20 | |
" | |
" Mappings | |
" |
This file contains 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
#!/usr/bin/env python3 | |
# ./switchbot-plug-mini <ble-addr> [<state>] | |
# | |
# state: | |
# None: Get the current state | |
# 0: OFF | |
# 1: ON | |
# -1: TOGGLE |
OlderNewer