├── .gitignore ├── README.md ├── bindings.4coder ├── config.4coder ├── custom ├── 4coder_code_index.cpp ├── 4coder_code_index.h ├── 4coder_default_hooks.cpp ├── 4coder_jumping.cpp └── languages │ └── 4coder_cpp_lexer_gen.cpp ├── custom_4coder.dll ├── custom_4coder.so ├── lex.bat ├── lex.sh ├── release.bat ├── release.sh └── themes ├── theme-horizon.4coder ├── theme-nord.4coder └── theme-solarized-dark.4coder /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | /external -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/README.md -------------------------------------------------------------------------------- /bindings.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/bindings.4coder -------------------------------------------------------------------------------- /config.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/config.4coder -------------------------------------------------------------------------------- /custom/4coder_code_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom/4coder_code_index.cpp -------------------------------------------------------------------------------- /custom/4coder_code_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom/4coder_code_index.h -------------------------------------------------------------------------------- /custom/4coder_default_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom/4coder_default_hooks.cpp -------------------------------------------------------------------------------- /custom/4coder_jumping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom/4coder_jumping.cpp -------------------------------------------------------------------------------- /custom/languages/4coder_cpp_lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom/languages/4coder_cpp_lexer_gen.cpp -------------------------------------------------------------------------------- /custom_4coder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom_4coder.dll -------------------------------------------------------------------------------- /custom_4coder.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/custom_4coder.so -------------------------------------------------------------------------------- /lex.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/lex.bat -------------------------------------------------------------------------------- /lex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/lex.sh -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/release.bat -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/release.sh -------------------------------------------------------------------------------- /themes/theme-horizon.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/themes/theme-horizon.4coder -------------------------------------------------------------------------------- /themes/theme-nord.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/themes/theme-nord.4coder -------------------------------------------------------------------------------- /themes/theme-solarized-dark.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytrias/4coder_skytrias/HEAD/themes/theme-solarized-dark.4coder --------------------------------------------------------------------------------