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
function! s:dein_list() abort | |
echomsg '[dein] #: not sourced, X: not installed' | |
for pair in items(dein#get()) | |
echomsg (!isdirectory(pair[1].path) ? 'X' | |
\ : dein#is_sourced(pair[0]) ? ' ' | |
\ : '#') pair[0] | |
endfor | |
endfunction | |
command! DeinList call s:dein_list() |
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 defined(ENABLE_AVX) && !defined(__AVX__) | |
# error Macro: ENABLE_AVX is defined, but unable to use AVX intrinsic functions | |
#elif defined(ENABLE_SSE) && !defined(__SSE2__) | |
# error Macro: ENABLE_SSE is defined, but unable to use SSE intrinsic functions | |
#elif defined(ENABLE_NEON) && !defined(__ARM_NEON) && !defined(__ARM_NEON__) | |
# error Macro: ENABLE_NEON is defined, but unable to use NEON intrinsic functions | |
#else | |
#include <cstddef> |
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
" Template of configuration with dein.vim | |
if has('vim_starting') | |
let s:deindir = expand('~/.cache/dein') | |
let s:deinlocal = s:deindir . '/repos/github.com/Shougo/dein.vim' | |
let &runtimepath = s:deinlocal . ',' . &runtimepath | |
endif | |
if dein#load_state(s:deindir) | |
call dein#begin(s:deindir) | |
call dein#add('Shougo/dein.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
" neobundle.vim version | |
set fileencoding=utf-8 | |
set encoding=utf-8 | |
scriptencoding utf-8 | |
if &compatible && has('vim_starting') | |
set nocompatible | |
endif | |
augroup MyAutoCmd |
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
" ============================================================ | |
" __ __ ____ | |
" / /______ / /___ ___________ / __ \ _ | |
" / //_/ __ \/ __/ / / / ___/ __ \ / / / /(_) | |
" / ,< / /_/ / /_/ /_/ / / / / / / / /_/ / _ | |
" /_/|_|\____/\__/\__,_/_/ /_/ /_/ \____/ ( ) | |
" |/ | |
" | |
" The setting file for GUI only. | |
" ============================================================ |
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
ZLIB_DIR := ../zlib-1.2.8 | |
ZLIB_INCS := -I$(ZLIB_DIR) | |
ZLIB_LDLIBS_DIR := $(ZLIB_DIR) | |
ZLIB_LDLIBS := -L$(ZLIB_LDLIBS_DIR) -lz | |
ifeq ($(DEBUG),true) | |
OPT_CFLAGS := -O0 -g3 -ftrapv -fstack-protector-all -D_FORTIFY_SOURCE=2 | |
ifneq ($(shell echo $$OSTYPE),cygwin) | |
OPT_CFLAGS := $(OPT_CFLAGS) -fsanitize=address -fno-omit-frame-pointer | |
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
function! s:get_sid_prefix() abort | |
return matchstr(expand('<sfile>'), '^function \zs<SNR>\d\+_\zeget_sid_prefix$') | |
endfunction | |
let s:sid_prefix = s:get_sid_prefix() | |
delfunction s:get_sid_prefix | |
function! s:tes() abort | |
setlocal omnifunc=javacomplete#Complete | |
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
function! s:get_sid_prefix() abort | |
return matchstr(expand('<sfile>'), '^function \zs<SNR>\d\+_\zeget_sid_prefix$') | |
endfunction | |
let s:sid_prefix = s:get_sid_prefix() | |
delfunction s:get_sid_prefix | |
function! s:callback(channel, msg) abort | |
echo "from the handler: " a:channel . ' : ' . a:msg | |
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
#ifndef WINSUBSET_H | |
#define WINSUBSET_H | |
#if defined(_WIN32) || defined(_WIN64) || defined(__CYGWIN__) | |
# ifndef WIN32_LEAN_AND_MEAN | |
# define WIN32_LEAN_AND_MEAN | |
# define WINSUBSET_WIN32_LEAN_AND_MEAN_IS_NOT_DEFINED | |
# endif | |
# ifndef NOGDICAPMASKS |
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
#include <stdio.h> | |
#include <windows.h> | |
#define A 440 | |
#define Ais 466 | |
#define B 494 | |
#define C 523 | |
#define Cis 554 | |
#define D 588 | |
#define Dis 622 |