Skip to content

Instantly share code, notes, and snippets.

View joy2fun's full-sized avatar

Chiao F joy2fun

  • undefined
  • Shanghai, China
View GitHub Profile
{"version":1,"resource":"file:///Users/chiao/move/msch/console/controllers/SyncMatchController.php","entries":[{"id":"5ils.php","timestamp":1650942137680},{"id":"Da1A.php","timestamp":1650942164538},{"id":"cNQ1.php","timestamp":1650942181634},{"id":"OZOy.php","timestamp":1650942200302},{"id":"38Hd.php","timestamp":1650942213303},{"id":"GpaC.php","timestamp":1650942224225},{"id":"kh87.php","timestamp":1650942252436},{"id":"6FKC.php","timestamp":1650942280021},{"id":"CV97.php","timestamp":1650942339443},{"id":"hp06.php","timestamp":1650942397003},{"id":"eedh.php","timestamp":1650942434277},{"id":"0Snj.php","timestamp":1650942470550},{"id":"KP6b.php","timestamp":1650942558075},{"id":"nCnl.php","timestamp":1650942606669},{"id":"THW8.php","timestamp":1650942657199},{"id":"4M2D.php","timestamp":1650942805092},{"id":"qCND.php","timestamp":1650943045763},{"id":"FxOe.php","timestamp":1650943164443},{"id":"b1CW.php","timestamp":1650943223084},{"id":"hY1E.php","timestamp":1650943237616},{"id":"zv4l.php","timestamp":1650
@joy2fun
joy2fun / file1.css
Last active August 25, 2018 14:31
test
.t{
color:#fff;
}
@joy2fun
joy2fun / vimrc
Last active August 29, 2015 14:03
Another way to extract snippets files for vim plugin snipMate
"use common-separated names to load multi snippets files for specific file type
"call LoadSnippets('vim,html') will load vim.snippets and html.snippets
fun! LoadSnippets(p, ft)
call ResetSnippets(a:ft)
" always include global snippets
let snips = split('_,'.a:p, ',')
for name in snips
call ExtractSnipsFile(g:snippets_dir . name . '.snippets', a:ft)
endfor