├── .gitignore ├── .lite_workspace.lua ├── TODO.txt ├── bindings.4coder ├── config.4coder ├── custom ├── 4coder_language_ids.cpp ├── 4coder_terickson_bindings.cpp ├── 4coder_terickson_commands.cpp ├── 4coder_terickson_error_message.cpp ├── 4coder_terickson_hashmap.cpp ├── 4coder_terickson_hashmap2.cpp ├── 4coder_terickson_helper.cpp ├── 4coder_terickson_highlight.cpp ├── 4coder_terickson_hooks.cpp ├── 4coder_terickson_ids.cpp ├── 4coder_terickson_language.cpp ├── 4coder_terickson_language.h ├── 4coder_terickson_lists.cpp ├── 4coder_terickson_map.cpp ├── 4coder_terickson_prjlib.cpp ├── 4coder_terickson_scopeline.cpp ├── 4coder_terickson_types.cpp ├── ext │ ├── 4coder_terickson_function_index.cpp │ ├── 4coder_terickson_index_ext.cpp │ ├── 4coder_terickson_index_ext.h │ ├── 4coder_terickson_std_include.cpp │ └── 4coder_terickson_todo.cpp └── languages │ ├── cpp │ ├── cpp.cpp │ ├── index.cpp │ └── lexer_gen.cpp │ ├── gas │ ├── gas.cpp │ ├── index.cpp │ └── lexer_gen.cpp │ ├── glsl │ ├── glsl.cpp │ ├── index.cpp │ └── lexer_gen.cpp │ ├── nasm │ ├── index.cpp │ ├── lexer_gen.cpp │ └── nasm.cpp │ ├── odin │ ├── ext │ │ ├── function_indexer.cpp │ │ └── std_include.cpp │ ├── index.cpp │ ├── lexer_gen.cpp │ └── odin.cpp │ └── sh │ ├── index.cpp │ ├── lexer_gen.cpp │ └── sh.cpp ├── deploy.bat └── themes ├── theme-base16-default-dark.4coder ├── theme-base16-gruvbox-dark-hard.4coder ├── theme-base16-muted.4coder ├── theme-liqube.4coder ├── theme-naysayer.4coder └── theme-nord.4coder /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/.gitignore -------------------------------------------------------------------------------- /.lite_workspace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/.lite_workspace.lua -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/TODO.txt -------------------------------------------------------------------------------- /bindings.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/bindings.4coder -------------------------------------------------------------------------------- /config.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/config.4coder -------------------------------------------------------------------------------- /custom/4coder_language_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_language_ids.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_bindings.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_commands.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_error_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_error_message.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_hashmap.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_hashmap2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_hashmap2.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_helper.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_highlight.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_hooks.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_ids.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_language.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_language.h -------------------------------------------------------------------------------- /custom/4coder_terickson_lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_lists.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_map.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_prjlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_prjlib.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_scopeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/4coder_terickson_scopeline.cpp -------------------------------------------------------------------------------- /custom/4coder_terickson_types.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/ext/4coder_terickson_function_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/ext/4coder_terickson_function_index.cpp -------------------------------------------------------------------------------- /custom/ext/4coder_terickson_index_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/ext/4coder_terickson_index_ext.cpp -------------------------------------------------------------------------------- /custom/ext/4coder_terickson_index_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/ext/4coder_terickson_index_ext.h -------------------------------------------------------------------------------- /custom/ext/4coder_terickson_std_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/ext/4coder_terickson_std_include.cpp -------------------------------------------------------------------------------- /custom/ext/4coder_terickson_todo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/ext/4coder_terickson_todo.cpp -------------------------------------------------------------------------------- /custom/languages/cpp/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/cpp/cpp.cpp -------------------------------------------------------------------------------- /custom/languages/cpp/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/cpp/index.cpp -------------------------------------------------------------------------------- /custom/languages/cpp/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/cpp/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/gas/gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/gas/gas.cpp -------------------------------------------------------------------------------- /custom/languages/gas/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/gas/index.cpp -------------------------------------------------------------------------------- /custom/languages/gas/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/gas/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/glsl/glsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/glsl/glsl.cpp -------------------------------------------------------------------------------- /custom/languages/glsl/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/glsl/index.cpp -------------------------------------------------------------------------------- /custom/languages/glsl/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/glsl/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/nasm/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/nasm/index.cpp -------------------------------------------------------------------------------- /custom/languages/nasm/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/nasm/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/nasm/nasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/nasm/nasm.cpp -------------------------------------------------------------------------------- /custom/languages/odin/ext/function_indexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/odin/ext/function_indexer.cpp -------------------------------------------------------------------------------- /custom/languages/odin/ext/std_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/odin/ext/std_include.cpp -------------------------------------------------------------------------------- /custom/languages/odin/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/odin/index.cpp -------------------------------------------------------------------------------- /custom/languages/odin/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/odin/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/odin/odin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/odin/odin.cpp -------------------------------------------------------------------------------- /custom/languages/sh/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/sh/index.cpp -------------------------------------------------------------------------------- /custom/languages/sh/lexer_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/sh/lexer_gen.cpp -------------------------------------------------------------------------------- /custom/languages/sh/sh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/custom/languages/sh/sh.cpp -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/deploy.bat -------------------------------------------------------------------------------- /themes/theme-base16-default-dark.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-base16-default-dark.4coder -------------------------------------------------------------------------------- /themes/theme-base16-gruvbox-dark-hard.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-base16-gruvbox-dark-hard.4coder -------------------------------------------------------------------------------- /themes/theme-base16-muted.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-base16-muted.4coder -------------------------------------------------------------------------------- /themes/theme-liqube.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-liqube.4coder -------------------------------------------------------------------------------- /themes/theme-naysayer.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-naysayer.4coder -------------------------------------------------------------------------------- /themes/theme-nord.4coder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terickson001/4files/HEAD/themes/theme-nord.4coder --------------------------------------------------------------------------------