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 CSV_PARSER_H | |
| #define CSV_PARSER_H | |
| /*! | |
| * @brief Simple csv parser | |
| * @author koturn | |
| * @date 2015 12/24 | |
| * @file CsvParser.h | |
| * @version 0.1 |
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
| scriptencoding utf-8 | |
| set nocompatible | |
| set matchpairs+=(:),{:},「:」 |
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
| /*! | |
| * @brief Simple optionparser | |
| * @author koturn | |
| * @date 2015 12/27 | |
| * @file OptionParser.h | |
| * @version 0.2 | |
| */ | |
| #ifndef OPTION_PARSER_H | |
| #define OPTION_PARSER_H |
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:inputcmd(text) abort | |
| let [curpos, line] = [getcurpos(), getline('.')] | |
| let line_parts = [line[: curpos[2] - 1], line[curpos[2] :]] | |
| call setline(line('.'), line_parts[0] . a:text . line_parts[1]) | |
| endfunction | |
| command! -nargs=* InputCmd01 call s:inputcmd(<q-args>) | |
| command! -nargs=* InputCmd02 call feedkeys("\<Esc>a<args>", 'n') |
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 |
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
| 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
| 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
| 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
| " ============================================================ | |
| " __ __ ____ | |
| " / /______ / /___ ___________ / __ \ _ | |
| " / //_/ __ \/ __/ / / / ___/ __ \ / / / /(_) | |
| " / ,< / /_/ / /_/ /_/ / / / / / / / /_/ / _ | |
| " /_/|_|\____/\__/\__,_/_/ /_/ /_/ \____/ ( ) | |
| " |/ | |
| " | |
| " The setting file for GUI only. | |
| " ============================================================ |