From 9efc4fb2e39f57ec9fff52e1e76d66c21fbdb699 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Thu, 15 Aug 2019 19:54:06 -0700 Subject: [PATCH] LOG --- 4coder_api_transition_30_31_helpers.cpp | 5 - 4coder_base_types.cpp | 65 +- 4coder_base_types.h | 2 - 4coder_build_commands.cpp | 4 +- 4coder_default_framework.cpp | 12 +- 4coder_default_include.cpp | 3 + 4coder_function_list.cpp | 2 +- 4coder_generated/app_functions.h | 14 + 4coder_generated/command_metadata.h | 953 +++++++++++---------- 4coder_log.cpp | 54 ++ 4coder_log_parser.cpp | 417 +++++++++ 4coder_log_parser.h | 106 +++ 4coder_project_commands.cpp | 2 +- 4coder_system_command.cpp | 2 +- 4coder_table.cpp | 27 +- 4ed.cpp | 13 +- 4ed.h | 3 + 4ed_api_implementation.cpp | 11 + 4ed_app_models.h | 1 + 4ed_app_target.cpp | 3 + 4ed_file.cpp | 12 + 4ed_log.cpp | 60 ++ 4ed_log.h | 27 + 4ed_system.h | 4 + 4ed_working_set.cpp | 2 + platform_all/4ed_link_system_functions.cpp | 1 + platform_win32/win32_4ed.cpp | 27 +- 27 files changed, 1308 insertions(+), 524 deletions(-) create mode 100644 4coder_log.cpp create mode 100644 4coder_log_parser.cpp create mode 100644 4coder_log_parser.h create mode 100644 4ed_log.cpp create mode 100644 4ed_log.h diff --git a/4coder_api_transition_30_31_helpers.cpp b/4coder_api_transition_30_31_helpers.cpp index dffeb885..3f47be0e 100644 --- a/4coder_api_transition_30_31_helpers.cpp +++ b/4coder_api_transition_30_31_helpers.cpp @@ -738,11 +738,6 @@ parse_buffer_to_jump_array(Application_Links *app, Arena *arena, Buffer_Summary return(parse_buffer_to_jump_array(app, arena, buffer.buffer_id)); } -static void -lock_jump_buffer(Buffer_Summary buffer){ - lock_jump_buffer(buffer.buffer_name, buffer.buffer_name_len); -} - static Face_Description get_buffer_face_description(Application_Links *app, Buffer_Summary *buffer){ Face_Description result = {}; diff --git a/4coder_base_types.cpp b/4coder_base_types.cpp index f4ac01a7..29554e30 100644 --- a/4coder_base_types.cpp +++ b/4coder_base_types.cpp @@ -176,6 +176,8 @@ make_data(void *memory, umem size){ return(data); } +#define make_data_struct(s) make_data((s), sizeof(*(s))) + global_const Data zero_data = {}; #define data_initr(m,s) {(m), (s)} @@ -3329,28 +3331,45 @@ string_substring(String_Const_u32 str, Range_i64 range){ } static umem -string_find_first(String_Const_char str, char c){ - umem i = 0; +string_find_first(String_Const_char str, umem start_pos, char c){ + umem i = start_pos; for (;i < str.size && c != str.str[i]; i += 1); return(i); } static umem +string_find_first(String_Const_u8 str, umem start_pos, u8 c){ + umem i = start_pos; + for (;i < str.size && c != str.str[i]; i += 1); + return(i); +} +static umem +string_find_first(String_Const_u16 str, umem start_pos, u16 c){ + umem i = start_pos; + for (;i < str.size && c != str.str[i]; i += 1); + return(i); +} +static umem +string_find_first(String_Const_u32 str, umem start_pos, u32 c){ + umem i = start_pos; + for (;i < str.size && c != str.str[i]; i += 1); + return(i); +} + +static umem +string_find_first(String_Const_char str, char c){ + return(string_find_first(str, 0, c)); +} +static umem string_find_first(String_Const_u8 str, u8 c){ - umem i = 0; - for (;i < str.size && c != str.str[i]; i += 1); - return(i); + return(string_find_first(str, 0, c)); } static umem string_find_first(String_Const_u16 str, u16 c){ - umem i = 0; - for (;i < str.size && c != str.str[i]; i += 1); - return(i); + return(string_find_first(str, 0, c)); } static umem string_find_first(String_Const_u32 str, u32 c){ - umem i = 0; - for (;i < str.size && c != str.str[i]; i += 1); - return(i); + return(string_find_first(str, 0, c)); } static imem @@ -5982,6 +6001,30 @@ data_is_ascii(Data data){ //////////////////////////////// +static String_Const_u8 +string_escape(Arena *arena, String_Const_u8 string){ + List_String_Const_u8 list = string_replace_list(arena, string, string_u8_litexpr("\\"), + string_u8_litexpr("\\\\")); + Node_String_Const_u8 **fixup_ptr = &list.first; + for (Node_String_Const_u8 *node = list.first, *next = 0; + node != 0; + node = next){ + next = node->next; + List_String_Const_u8 relist = string_replace_list(arena, node->string, string_u8_litexpr("\""), + string_u8_litexpr("\\\"")); + if (relist.first != 0){ + *fixup_ptr = relist.first; + relist.last->next = next; + fixup_ptr = &relist.last->next; + list.last = relist.last; + } + else{ + *fixup_ptr = next; + } + } + return(string_list_flatten(arena, list, StringFill_NullTerminate)); +} + static String_Const_char string_interpret_escapes(Arena *arena, String_Const_char string){ char *space = push_array(arena, char, string.size + 1); diff --git a/4coder_base_types.h b/4coder_base_types.h index ac52e465..53ec1db4 100644 --- a/4coder_base_types.h +++ b/4coder_base_types.h @@ -1107,8 +1107,6 @@ struct Scratch_Block{ Temp_Memory temp; }; -//////////////////////////////// - #endif // BOTTOM diff --git a/4coder_build_commands.cpp b/4coder_build_commands.cpp index 50325fde..d889ffec 100644 --- a/4coder_build_commands.cpp +++ b/4coder_build_commands.cpp @@ -132,7 +132,7 @@ CUSTOM_DOC("Looks for a build.bat, build.sh, or makefile in the current and pare Buffer_ID buffer = view_get_buffer(app, view, AccessAll); standard_search_and_build(app, view, buffer); memset(&prev_location, 0, sizeof(prev_location)); - lock_jump_buffer(string_u8_litexpr("*compilation*")); + lock_jump_buffer(app, string_u8_litexpr("*compilation*")); } static Buffer_ID @@ -172,7 +172,7 @@ CUSTOM_DOC("Looks for a build.bat, build.sh, or makefile in the current and pare set_fancy_compilation_buffer_font(app); memset(&prev_location, 0, sizeof(prev_location)); - lock_jump_buffer(string_u8_litexpr("*compilation*")); + lock_jump_buffer(app, string_u8_litexpr("*compilation*")); } CUSTOM_COMMAND_SIG(close_build_panel) diff --git a/4coder_default_framework.cpp b/4coder_default_framework.cpp index 0be5c521..0b015f34 100644 --- a/4coder_default_framework.cpp +++ b/4coder_default_framework.cpp @@ -11,16 +11,20 @@ unlock_jump_buffer(void){ } static void -lock_jump_buffer(String_Const_u8 name){ +lock_jump_buffer(Application_Links *app, String_Const_u8 name){ if (name.size < sizeof(locked_buffer_space)){ block_copy(locked_buffer_space, name.str, name.size); locked_buffer = SCu8(locked_buffer_space, name.size); + Scratch_Block scratch(app); + String_Const_u8 escaped = string_escape(scratch, name); + LogEventF(log_string(app, M), scratch, 0, 0, thread_get_id(app), + "lock jump buffer [name=\"%.*s\"]", string_expand(escaped)); } } static void -lock_jump_buffer(char *name, i32 size){ - lock_jump_buffer(SCu8(name, size)); +lock_jump_buffer(Application_Links *app, char *name, i32 size){ + lock_jump_buffer(app, SCu8(name, size)); } static void @@ -28,7 +32,7 @@ lock_jump_buffer(Application_Links *app, Buffer_ID buffer_id){ Arena *scratch = context_get_arena(app); Temp_Memory temp = begin_temp(scratch); String_Const_u8 buffer_name = push_buffer_unique_name(app, scratch, buffer_id); - lock_jump_buffer(buffer_name); + lock_jump_buffer(app, buffer_name); end_temp(temp); } diff --git a/4coder_default_include.cpp b/4coder_default_include.cpp index bf97b445..e41474fd 100644 --- a/4coder_default_include.cpp +++ b/4coder_default_include.cpp @@ -54,7 +54,9 @@ #include "4coder_function_list.h" #include "4coder_scope_commands.h" #include "4coder_combined_write_commands.h" +#include "4coder_log_parser.h" +#include "4coder_log.cpp" #include "4coder_hash_functions.cpp" #include "4coder_table.cpp" #include "4coder_string_match.cpp" @@ -64,6 +66,7 @@ #include "4coder_default_framework_variables.cpp" #include "4coder_helper.cpp" +#include "4coder_log_parser.cpp" #include "4coder_seek.cpp" #include "4coder_fancy.cpp" #include "4coder_ui_helper.cpp" diff --git a/4coder_function_list.cpp b/4coder_function_list.cpp index 62635463..8d54cabb 100644 --- a/4coder_function_list.cpp +++ b/4coder_function_list.cpp @@ -257,7 +257,7 @@ list_all_functions(Application_Links *app, Buffer_ID optional_target_buffer){ View_ID view = get_active_view(app, AccessAll); view_set_buffer(app, view, decls_buffer, 0); - lock_jump_buffer(decls_name); + lock_jump_buffer(app, decls_name); end_temp(temp); diff --git a/4coder_generated/app_functions.h b/4coder_generated/app_functions.h index 551d2ac8..8755487f 100644 --- a/4coder_generated/app_functions.h +++ b/4coder_generated/app_functions.h @@ -113,6 +113,8 @@ struct Application_Links; #define START_QUERY_BAR_SIG(n) b32 n(Application_Links *app, Query_Bar *bar, u32 flags) #define END_QUERY_BAR_SIG(n) void n(Application_Links *app, Query_Bar *bar, u32 flags) #define PRINT_MESSAGE_SIG(n) b32 n(Application_Links *app, String_Const_u8 message) +#define LOG_STRING_SIG(n) b32 n(Application_Links *app, String_Const_u8 str) +#define THREAD_GET_ID_SIG(n) i32 n(Application_Links *app) #define GET_LARGEST_FACE_ID_SIG(n) Face_ID n(Application_Links *app) #define SET_GLOBAL_FACE_SIG(n) b32 n(Application_Links *app, Face_ID id, b32 apply_to_all_buffers) #define BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(n) History_Record_Index n(Application_Links *app, Buffer_ID buffer_id) @@ -286,6 +288,8 @@ typedef GET_ACTIVE_QUERY_BARS_SIG(Get_Active_Query_Bars_Function); typedef START_QUERY_BAR_SIG(Start_Query_Bar_Function); typedef END_QUERY_BAR_SIG(End_Query_Bar_Function); typedef PRINT_MESSAGE_SIG(Print_Message_Function); +typedef LOG_STRING_SIG(Log_String_Function); +typedef THREAD_GET_ID_SIG(Thread_Get_ID_Function); typedef GET_LARGEST_FACE_ID_SIG(Get_Largest_Face_ID_Function); typedef SET_GLOBAL_FACE_SIG(Set_Global_Face_Function); typedef BUFFER_HISTORY_GET_MAX_RECORD_INDEX_SIG(Buffer_History_Get_Max_Record_Index_Function); @@ -461,6 +465,8 @@ Get_Active_Query_Bars_Function *get_active_query_bars; Start_Query_Bar_Function *start_query_bar; End_Query_Bar_Function *end_query_bar; Print_Message_Function *print_message; +Log_String_Function *log_string; +Thread_Get_ID_Function *thread_get_id; Get_Largest_Face_ID_Function *get_largest_face_id; Set_Global_Face_Function *set_global_face; Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index; @@ -635,6 +641,8 @@ Get_Active_Query_Bars_Function *get_active_query_bars_; Start_Query_Bar_Function *start_query_bar_; End_Query_Bar_Function *end_query_bar_; Print_Message_Function *print_message_; +Log_String_Function *log_string_; +Thread_Get_ID_Function *thread_get_id_; Get_Largest_Face_ID_Function *get_largest_face_id_; Set_Global_Face_Function *set_global_face_; Buffer_History_Get_Max_Record_Index_Function *buffer_history_get_max_record_index_; @@ -817,6 +825,8 @@ app_links->get_active_query_bars_ = Get_Active_Query_Bars;\ app_links->start_query_bar_ = Start_Query_Bar;\ app_links->end_query_bar_ = End_Query_Bar;\ app_links->print_message_ = Print_Message;\ +app_links->log_string_ = Log_String;\ +app_links->thread_get_id_ = Thread_Get_ID;\ app_links->get_largest_face_id_ = Get_Largest_Face_ID;\ app_links->set_global_face_ = Set_Global_Face;\ app_links->buffer_history_get_max_record_index_ = Buffer_History_Get_Max_Record_Index;\ @@ -991,6 +1001,8 @@ static b32 get_active_query_bars(Application_Links *app, View_ID view_id, i32 ma static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar(app, bar, flags));} static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar(app, bar, flags));} static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message(app, message));} +static b32 log_string(Application_Links *app, String_Const_u8 str){return(app->log_string(app, str));} +static i32 thread_get_id(Application_Links *app){return(app->thread_get_id(app));} static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id(app));} static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face(app, id, apply_to_all_buffers));} static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index(app, buffer_id));} @@ -1165,6 +1177,8 @@ static b32 get_active_query_bars(Application_Links *app, View_ID view_id, i32 ma static b32 start_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){return(app->start_query_bar_(app, bar, flags));} static void end_query_bar(Application_Links *app, Query_Bar *bar, u32 flags){(app->end_query_bar_(app, bar, flags));} static b32 print_message(Application_Links *app, String_Const_u8 message){return(app->print_message_(app, message));} +static b32 log_string(Application_Links *app, String_Const_u8 str){return(app->log_string_(app, str));} +static i32 thread_get_id(Application_Links *app){return(app->thread_get_id_(app));} static Face_ID get_largest_face_id(Application_Links *app){return(app->get_largest_face_id_(app));} static b32 set_global_face(Application_Links *app, Face_ID id, b32 apply_to_all_buffers){return(app->set_global_face_(app, id, apply_to_all_buffers));} static History_Record_Index buffer_history_get_max_record_index(Application_Links *app, Buffer_ID buffer_id){return(app->buffer_history_get_max_record_index_(app, buffer_id));} diff --git a/4coder_generated/command_metadata.h b/4coder_generated/command_metadata.h index d66b7df2..7ad46c5d 100644 --- a/4coder_generated/command_metadata.h +++ b/4coder_generated/command_metadata.h @@ -2,7 +2,7 @@ #define command_id(c) (fcoder_metacmd_ID_##c) #define command_metadata(c) (&fcoder_metacmd_table[command_id(c)]) #define command_metadata_by_id(id) (&fcoder_metacmd_table[id]) -#define command_one_past_last_id 237 +#define command_one_past_last_id 238 #if defined(CUSTOM_COMMAND_SIG) #define PROC_LINKS(x,y) x #else @@ -10,6 +10,7 @@ #endif #if defined(CUSTOM_COMMAND_SIG) CUSTOM_COMMAND_SIG(write_explicit_enum_flags); +CUSTOM_COMMAND_SIG(parse_the_log); CUSTOM_COMMAND_SIG(seek_beginning_of_textual_line); CUSTOM_COMMAND_SIG(seek_end_of_textual_line); CUSTOM_COMMAND_SIG(seek_beginning_of_line); @@ -257,480 +258,482 @@ char *source_name; int32_t source_name_len; int32_t line_number; }; -static Command_Metadata fcoder_metacmd_table[237] = { -{ PROC_LINKS(write_explicit_enum_flags, 0), "write_explicit_enum_flags", 25, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in to give each a unique power of 2 value, starting from 1. Existing values are overwritten.", 194, "c:\\4ed\\code\\4coder_experiments.cpp", 34, 699 }, -{ PROC_LINKS(seek_beginning_of_textual_line, 0), "seek_beginning_of_textual_line", 30, "Seeks the cursor to the beginning of the line across all text.", 62, "c:\\4ed\\code\\4coder_seek.cpp", 27, 28 }, -{ PROC_LINKS(seek_end_of_textual_line, 0), "seek_end_of_textual_line", 24, "Seeks the cursor to the end of the line across all text.", 56, "c:\\4ed\\code\\4coder_seek.cpp", 27, 34 }, -{ PROC_LINKS(seek_beginning_of_line, 0), "seek_beginning_of_line", 22, "Seeks the cursor to the beginning of the visual line.", 53, "c:\\4ed\\code\\4coder_seek.cpp", 27, 40 }, -{ PROC_LINKS(seek_end_of_line, 0), "seek_end_of_line", 16, "Seeks the cursor to the end of the visual line.", 47, "c:\\4ed\\code\\4coder_seek.cpp", 27, 46 }, -{ PROC_LINKS(goto_beginning_of_file, 0), "goto_beginning_of_file", 22, "Sets the cursor to the beginning of the file.", 45, "c:\\4ed\\code\\4coder_seek.cpp", 27, 52 }, -{ PROC_LINKS(goto_end_of_file, 0), "goto_end_of_file", 16, "Sets the cursor to the end of the file.", 39, "c:\\4ed\\code\\4coder_seek.cpp", 27, 60 }, -{ PROC_LINKS(change_active_panel, 0), "change_active_panel", 19, "Change the currently active panel, moving to the panel with the next highest view_id.", 85, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 197 }, -{ PROC_LINKS(change_active_panel_backwards, 0), "change_active_panel_backwards", 29, "Change the currently active panel, moving to the panel with the next lowest view_id.", 84, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 207 }, -{ PROC_LINKS(open_panel_vsplit, 0), "open_panel_vsplit", 17, "Create a new panel by vertically splitting the active panel.", 60, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 217 }, -{ PROC_LINKS(open_panel_hsplit, 0), "open_panel_hsplit", 17, "Create a new panel by horizontally splitting the active panel.", 62, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 227 }, -{ PROC_LINKS(suppress_mouse, 0), "suppress_mouse", 14, "Hides the mouse and causes all mosue input (clicks, position, wheel) to be ignored.", 83, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 288 }, -{ PROC_LINKS(allow_mouse, 0), "allow_mouse", 11, "Shows the mouse and causes all mouse input to be processed normally.", 68, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 294 }, -{ PROC_LINKS(toggle_mouse, 0), "toggle_mouse", 12, "Toggles the mouse suppression mode, see suppress_mouse and allow_mouse.", 71, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 300 }, -{ PROC_LINKS(set_mode_to_original, 0), "set_mode_to_original", 20, "Sets the edit mode to 4coder original.", 38, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 306 }, -{ PROC_LINKS(set_mode_to_notepad_like, 0), "set_mode_to_notepad_like", 24, "Sets the edit mode to Notepad like.", 35, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 312 }, -{ PROC_LINKS(toggle_highlight_line_at_cursor, 0), "toggle_highlight_line_at_cursor", 31, "Toggles the line highlight at the cursor.", 41, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 318 }, -{ PROC_LINKS(toggle_highlight_enclosing_scopes, 0), "toggle_highlight_enclosing_scopes", 33, "In code files scopes surrounding the cursor are highlighted with distinguishing colors.", 87, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 324 }, -{ PROC_LINKS(toggle_paren_matching_helper, 0), "toggle_paren_matching_helper", 28, "In code files matching parentheses pairs are colored with distinguishing colors.", 80, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 330 }, -{ PROC_LINKS(toggle_fullscreen, 0), "toggle_fullscreen", 17, "Toggle fullscreen mode on or off. The change(s) do not take effect until the next frame.", 89, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 336 }, -{ PROC_LINKS(remap_interactive, 0), "remap_interactive", 17, "Switch to a named key binding map.", 34, "c:\\4ed\\code\\4coder_default_framework.cpp", 40, 344 }, -{ PROC_LINKS(write_character, 0), "write_character", 15, "Inserts whatever character was used to trigger this command.", 60, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 66 }, -{ PROC_LINKS(write_underscore, 0), "write_underscore", 16, "Inserts an underscore.", 22, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 75 }, -{ PROC_LINKS(delete_char, 0), "delete_char", 11, "Deletes the character to the right of the cursor.", 49, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 82 }, -{ PROC_LINKS(backspace_char, 0), "backspace_char", 14, "Deletes the character to the left of the cursor.", 48, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 99 }, -{ PROC_LINKS(set_mark, 0), "set_mark", 8, "Sets the mark to the current position of the cursor.", 52, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 118 }, -{ PROC_LINKS(cursor_mark_swap, 0), "cursor_mark_swap", 16, "Swaps the position of the cursor and the mark.", 46, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 127 }, -{ PROC_LINKS(delete_range, 0), "delete_range", 12, "Deletes the text in the range between the cursor and the mark.", 62, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 137 }, -{ PROC_LINKS(backspace_alpha_numeric_boundary, 0), "backspace_alpha_numeric_boundary", 32, "Delete characters between the cursor position and the first alphanumeric boundary to the left.", 94, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 157 }, -{ PROC_LINKS(delete_alpha_numeric_boundary, 0), "delete_alpha_numeric_boundary", 29, "Delete characters between the cursor position and the first alphanumeric boundary to the right.", 95, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 165 }, -{ PROC_LINKS(snipe_backward_whitespace_or_token_boundary, 0), "snipe_backward_whitespace_or_token_boundary", 43, "Delete a single, whole token on or to the left of the cursor and post it to the clipboard.", 90, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 185 }, -{ PROC_LINKS(snipe_forward_whitespace_or_token_boundary, 0), "snipe_forward_whitespace_or_token_boundary", 42, "Delete a single, whole token on or to the right of the cursor and post it to the clipboard.", 91, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 193 }, -{ PROC_LINKS(center_view, 0), "center_view", 11, "Centers the view vertically on the line on which the cursor sits.", 65, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 206 }, -{ PROC_LINKS(left_adjust_view, 0), "left_adjust_view", 16, "Sets the left size of the view near the x position of the cursor.", 65, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 221 }, -{ PROC_LINKS(click_set_cursor_and_mark, 0), "click_set_cursor_and_mark", 25, "Sets the cursor position and mark to the mouse position.", 56, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 244 }, -{ PROC_LINKS(click_set_cursor, 0), "click_set_cursor", 16, "Sets the cursor position to the mouse position.", 47, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 259 }, -{ PROC_LINKS(click_set_cursor_if_lbutton, 0), "click_set_cursor_if_lbutton", 27, "If the mouse left button is pressed, sets the cursor position to the mouse position.", 84, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 273 }, -{ PROC_LINKS(click_set_mark, 0), "click_set_mark", 14, "Sets the mark position to the mouse position.", 45, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 289 }, -{ PROC_LINKS(mouse_wheel_scroll, 0), "mouse_wheel_scroll", 18, "Reads the scroll wheel value from the mouse state and scrolls accordingly.", 74, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 303 }, -{ PROC_LINKS(move_up, 0), "move_up", 7, "Moves the cursor up one line.", 29, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 364 }, -{ PROC_LINKS(move_down, 0), "move_down", 9, "Moves the cursor down one line.", 31, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 370 }, -{ PROC_LINKS(move_up_10, 0), "move_up_10", 10, "Moves the cursor up ten lines.", 30, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 376 }, -{ PROC_LINKS(move_down_10, 0), "move_down_10", 12, "Moves the cursor down ten lines.", 32, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 382 }, -{ PROC_LINKS(move_down_textual, 0), "move_down_textual", 17, "Moves down to the next line of actual text, regardless of line wrapping.", 72, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 388 }, -{ PROC_LINKS(page_up, 0), "page_up", 7, "Scrolls the view up one view height and moves the cursor up one view height.", 76, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 398 }, -{ PROC_LINKS(page_down, 0), "page_down", 9, "Scrolls the view down one view height and moves the cursor down one view height.", 80, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 406 }, -{ PROC_LINKS(move_up_to_blank_line, 0), "move_up_to_blank_line", 21, "Seeks the cursor up to the next blank line.", 43, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 435 }, -{ PROC_LINKS(move_down_to_blank_line, 0), "move_down_to_blank_line", 23, "Seeks the cursor down to the next blank line.", 45, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 441 }, -{ PROC_LINKS(move_up_to_blank_line_skip_whitespace, 0), "move_up_to_blank_line_skip_whitespace", 37, "Seeks the cursor up to the next blank line and places it at the end of the line.", 80, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 447 }, -{ PROC_LINKS(move_down_to_blank_line_skip_whitespace, 0), "move_down_to_blank_line_skip_whitespace", 39, "Seeks the cursor down to the next blank line and places it at the end of the line.", 82, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 453 }, -{ PROC_LINKS(move_up_to_blank_line_end, 0), "move_up_to_blank_line_end", 25, "Seeks the cursor up to the next blank line and places it at the end of the line.", 80, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 459 }, -{ PROC_LINKS(move_down_to_blank_line_end, 0), "move_down_to_blank_line_end", 27, "Seeks the cursor down to the next blank line and places it at the end of the line.", 82, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 465 }, -{ PROC_LINKS(move_left, 0), "move_left", 9, "Moves the cursor one character to the left.", 43, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 476 }, -{ PROC_LINKS(move_right, 0), "move_right", 10, "Moves the cursor one character to the right.", 44, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 487 }, -{ PROC_LINKS(move_right_whitespace_boundary, 0), "move_right_whitespace_boundary", 30, "Seek right for the next boundary between whitespace and non-whitespace.", 71, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 508 }, -{ PROC_LINKS(move_left_whitespace_boundary, 0), "move_left_whitespace_boundary", 29, "Seek left for the next boundary between whitespace and non-whitespace.", 70, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 516 }, -{ PROC_LINKS(move_right_token_boundary, 0), "move_right_token_boundary", 25, "Seek right for the next end of a token.", 39, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 524 }, -{ PROC_LINKS(move_left_token_boundary, 0), "move_left_token_boundary", 24, "Seek left for the next beginning of a token.", 44, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 532 }, -{ PROC_LINKS(move_right_whitespace_or_token_boundary, 0), "move_right_whitespace_or_token_boundary", 39, "Seek right for the next end of a token or boundary between whitespace and non-whitespace.", 89, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 540 }, -{ PROC_LINKS(move_left_whitespace_or_token_boundary, 0), "move_left_whitespace_or_token_boundary", 38, "Seek left for the next end of a token or boundary between whitespace and non-whitespace.", 88, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 548 }, -{ PROC_LINKS(move_right_alpha_numeric_boundary, 0), "move_right_alpha_numeric_boundary", 33, "Seek right for boundary between alphanumeric characters and non-alphanumeric characters.", 88, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 556 }, -{ PROC_LINKS(move_left_alpha_numeric_boundary, 0), "move_left_alpha_numeric_boundary", 32, "Seek left for boundary between alphanumeric characters and non-alphanumeric characters.", 87, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 564 }, -{ PROC_LINKS(move_right_alpha_numeric_or_camel_boundary, 0), "move_right_alpha_numeric_or_camel_boundary", 42, "Seek right for boundary between alphanumeric characters or camel case word and non-alphanumeric characters.", 107, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 572 }, -{ PROC_LINKS(move_left_alpha_numeric_or_camel_boundary, 0), "move_left_alpha_numeric_or_camel_boundary", 41, "Seek left for boundary between alphanumeric characters or camel case word and non-alphanumeric characters.", 106, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 580 }, -{ PROC_LINKS(select_all, 0), "select_all", 10, "Puts the cursor at the top of the file, and the mark at the bottom of the file.", 79, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 601 }, -{ PROC_LINKS(to_uppercase, 0), "to_uppercase", 12, "Converts all ascii text in the range between the cursor and the mark to uppercase.", 82, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 614 }, -{ PROC_LINKS(to_lowercase, 0), "to_lowercase", 12, "Converts all ascii text in the range between the cursor and the mark to lowercase.", 82, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 627 }, -{ PROC_LINKS(clean_all_lines, 0), "clean_all_lines", 15, "Removes trailing whitespace from all lines in the current buffer.", 65, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 640 }, -{ PROC_LINKS(basic_change_active_panel, 0), "basic_change_active_panel", 25, "Change the currently active panel, moving to the panel with the next highest view_id. Will not skipe the build panel if it is open.", 132, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 678 }, -{ PROC_LINKS(close_panel, 0), "close_panel", 11, "Closes the currently active panel if it is not the only panel open.", 67, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 686 }, -{ PROC_LINKS(show_scrollbar, 0), "show_scrollbar", 14, "Sets the current view to show it's scrollbar.", 45, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 695 }, -{ PROC_LINKS(hide_scrollbar, 0), "hide_scrollbar", 14, "Sets the current view to hide it's scrollbar.", 45, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 702 }, -{ PROC_LINKS(show_filebar, 0), "show_filebar", 12, "Sets the current view to show it's filebar.", 43, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 709 }, -{ PROC_LINKS(hide_filebar, 0), "hide_filebar", 12, "Sets the current view to hide it's filebar.", 43, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 716 }, -{ PROC_LINKS(toggle_filebar, 0), "toggle_filebar", 14, "Toggles the visibility status of the current view's filebar.", 60, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 723 }, -{ PROC_LINKS(toggle_line_wrap, 0), "toggle_line_wrap", 16, "Toggles the current buffer's line wrapping status.", 50, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 732 }, -{ PROC_LINKS(toggle_fps_meter, 0), "toggle_fps_meter", 16, "Toggles the visibility of the FPS performance meter", 51, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 742 }, -{ PROC_LINKS(increase_line_wrap, 0), "increase_line_wrap", 18, "Increases the current buffer's width for line wrapping.", 55, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 748 }, -{ PROC_LINKS(decrease_line_wrap, 0), "decrease_line_wrap", 18, "Decrases the current buffer's width for line wrapping.", 54, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 758 }, -{ PROC_LINKS(increase_face_size, 0), "increase_face_size", 18, "Increase the size of the face used by the current buffer.", 57, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 768 }, -{ PROC_LINKS(decrease_face_size, 0), "decrease_face_size", 18, "Decrease the size of the face used by the current buffer.", 57, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 779 }, -{ PROC_LINKS(mouse_wheel_change_face_size, 0), "mouse_wheel_change_face_size", 28, "Reads the state of the mouse wheel and uses it to either increase or decrease the face size.", 92, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 790 }, -{ PROC_LINKS(toggle_virtual_whitespace, 0), "toggle_virtual_whitespace", 25, "Toggles the current buffer's virtual whitespace status.", 55, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 807 }, -{ PROC_LINKS(toggle_show_whitespace, 0), "toggle_show_whitespace", 22, "Toggles the current buffer's whitespace visibility status.", 58, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 817 }, -{ PROC_LINKS(toggle_line_numbers, 0), "toggle_line_numbers", 19, "Toggles the left margin line numbers.", 37, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 826 }, -{ PROC_LINKS(eol_dosify, 0), "eol_dosify", 10, "Puts the buffer in DOS line ending mode.", 40, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 832 }, -{ PROC_LINKS(eol_nixify, 0), "eol_nixify", 10, "Puts the buffer in NIX line ending mode.", 40, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 840 }, -{ PROC_LINKS(exit_4coder, 0), "exit_4coder", 11, "Attempts to close 4coder.", 25, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 848 }, -{ PROC_LINKS(goto_line, 0), "goto_line", 9, "Queries the user for a number, and jumps the cursor to the corresponding line.", 78, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 856 }, -{ PROC_LINKS(search, 0), "search", 6, "Begins an incremental search down through the current buffer for a user specified string.", 89, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1067 }, -{ PROC_LINKS(reverse_search, 0), "reverse_search", 14, "Begins an incremental search up through the current buffer for a user specified string.", 87, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1073 }, -{ PROC_LINKS(search_identifier, 0), "search_identifier", 17, "Begins an incremental search down through the current buffer for the word or token under the cursor.", 100, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1079 }, -{ PROC_LINKS(reverse_search_identifier, 0), "reverse_search_identifier", 25, "Begins an incremental search up through the current buffer for the word or token under the cursor.", 98, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1090 }, -{ PROC_LINKS(replace_in_range, 0), "replace_in_range", 16, "Queries the user for a needle and string. Replaces all occurences of needle with string in the range between cursor and the mark in the active buffer.", 150, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1141 }, -{ PROC_LINKS(replace_in_buffer, 0), "replace_in_buffer", 17, "Queries the user for a needle and string. Replaces all occurences of needle with string in the active buffer.", 109, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1150 }, -{ PROC_LINKS(replace_in_all_buffers, 0), "replace_in_all_buffers", 22, "Queries the user for a needle and string. Replaces all occurences of needle with string in all editable buffers.", 112, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1159 }, -{ PROC_LINKS(query_replace, 0), "query_replace", 13, "Queries the user for two strings, and incrementally replaces every occurence of the first string with the second string.", 120, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1247 }, -{ PROC_LINKS(query_replace_identifier, 0), "query_replace_identifier", 24, "Queries the user for a string, and incrementally replace every occurence of the word or token found at the cursor with the specified string.", 140, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1267 }, -{ PROC_LINKS(query_replace_selection, 0), "query_replace_selection", 23, "Queries the user for a string, and incrementally replace every occurence of the string found in the selected range with the specified string.", 141, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1283 }, -{ PROC_LINKS(save_all_dirty_buffers, 0), "save_all_dirty_buffers", 22, "Saves all buffers marked dirty (showing the '*' indicator).", 59, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1318 }, -{ PROC_LINKS(delete_file_query, 0), "delete_file_query", 17, "Deletes the file of the current buffer if 4coder has the appropriate access rights. Will ask the user for confirmation first.", 125, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1343 }, -{ PROC_LINKS(save_to_query, 0), "save_to_query", 13, "Queries the user for a file name and saves the contents of the current buffer, altering the buffer's name too.", 110, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1381 }, -{ PROC_LINKS(rename_file_query, 0), "rename_file_query", 17, "Queries the user for a new name and renames the file of the current buffer, altering the buffer's name too.", 107, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1416 }, -{ PROC_LINKS(make_directory_query, 0), "make_directory_query", 20, "Queries the user for a name and creates a new directory with the given name.", 76, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1456 }, -{ PROC_LINKS(move_line_up, 0), "move_line_up", 12, "Swaps the line under the cursor with the line above it, and moves the cursor up with it.", 88, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1489 }, -{ PROC_LINKS(move_line_down, 0), "move_line_down", 14, "Swaps the line under the cursor with the line below it, and moves the cursor down with it.", 90, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1495 }, -{ PROC_LINKS(duplicate_line, 0), "duplicate_line", 14, "Create a copy of the line on which the cursor sits.", 51, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1501 }, -{ PROC_LINKS(delete_line, 0), "delete_line", 11, "Delete the line the on which the cursor sits.", 45, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1515 }, -{ PROC_LINKS(open_file_in_quotes, 0), "open_file_in_quotes", 19, "Reads a filename from surrounding '\"' characters and attempts to open the corresponding file.", 94, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1580 }, -{ PROC_LINKS(open_matching_file_cpp, 0), "open_matching_file_cpp", 22, "If the current file is a *.cpp or *.h, attempts to open the corresponding *.h or *.cpp file in the other view.", 110, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1612 }, -{ PROC_LINKS(view_buffer_other_panel, 0), "view_buffer_other_panel", 23, "Set the other non-active panel to view the buffer that the active panel views, and switch to that panel.", 104, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1625 }, -{ PROC_LINKS(swap_buffers_between_panels, 0), "swap_buffers_between_panels", 27, "Set the other non-active panel to view the buffer that the active panel views, and switch to that panel.", 104, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1637 }, -{ PROC_LINKS(kill_buffer, 0), "kill_buffer", 11, "Kills the current buffer.", 25, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1671 }, -{ PROC_LINKS(save, 0), "save", 4, "Saves the current buffer.", 25, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1679 }, -{ PROC_LINKS(reopen, 0), "reopen", 6, "Reopen the current buffer from the hard drive.", 46, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1691 }, -{ PROC_LINKS(undo, 0), "undo", 4, "Advances backwards through the undo history of the current buffer.", 66, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1749 }, -{ PROC_LINKS(redo, 0), "redo", 4, "Advances forwards through the undo history of the current buffer.", 65, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1762 }, -{ PROC_LINKS(undo_all_buffers, 0), "undo_all_buffers", 16, "Advances backward through the undo history in the buffer containing the most recent regular edit.", 97, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1776 }, -{ PROC_LINKS(redo_all_buffers, 0), "redo_all_buffers", 16, "Advances forward through the undo history in the buffer containing the most recent regular edit.", 96, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1850 }, -{ PROC_LINKS(open_in_other, 0), "open_in_other", 13, "Interactively opens a file in the other panel.", 46, "c:\\4ed\\code\\4coder_base_commands.cpp", 36, 1953 }, -{ PROC_LINKS(lister__quit, 0), "lister__quit", 12, "A lister mode command that quits the list without executing any actions.", 72, "c:\\4ed\\code\\4coder_lists.cpp", 28, 8 }, -{ PROC_LINKS(lister__activate, 0), "lister__activate", 16, "A lister mode command that activates the list's action on the highlighted item.", 79, "c:\\4ed\\code\\4coder_lists.cpp", 28, 15 }, -{ PROC_LINKS(lister__write_character, 0), "lister__write_character", 23, "A lister mode command that dispatches to the lister's write character handler.", 78, "c:\\4ed\\code\\4coder_lists.cpp", 28, 30 }, -{ PROC_LINKS(lister__backspace_text_field, 0), "lister__backspace_text_field", 28, "A lister mode command that dispatches to the lister's backspace text field handler.", 83, "c:\\4ed\\code\\4coder_lists.cpp", 28, 40 }, -{ PROC_LINKS(lister__move_up, 0), "lister__move_up", 15, "A lister mode command that dispatches to the lister's navigate up handler.", 74, "c:\\4ed\\code\\4coder_lists.cpp", 28, 50 }, -{ PROC_LINKS(lister__move_down, 0), "lister__move_down", 17, "A lister mode command that dispatches to the lister's navigate down handler.", 76, "c:\\4ed\\code\\4coder_lists.cpp", 28, 60 }, -{ PROC_LINKS(lister__wheel_scroll, 0), "lister__wheel_scroll", 20, "A lister mode command that scrolls the list in response to the mouse wheel.", 75, "c:\\4ed\\code\\4coder_lists.cpp", 28, 70 }, -{ PROC_LINKS(lister__mouse_press, 0), "lister__mouse_press", 19, "A lister mode command that beings a click interaction with a list item under the mouse.", 87, "c:\\4ed\\code\\4coder_lists.cpp", 28, 84 }, -{ PROC_LINKS(lister__mouse_release, 0), "lister__mouse_release", 21, "A lister mode command that ends a click interaction with a list item under the mouse, possibly activating it.", 109, "c:\\4ed\\code\\4coder_lists.cpp", 28, 95 }, -{ PROC_LINKS(lister__repaint, 0), "lister__repaint", 15, "A lister mode command that updates the lists UI data.", 53, "c:\\4ed\\code\\4coder_lists.cpp", 28, 110 }, -{ PROC_LINKS(lister__write_character__default, 0), "lister__write_character__default", 32, "A lister mode command that inserts a new character to the text field.", 69, "c:\\4ed\\code\\4coder_lists.cpp", 28, 120 }, -{ PROC_LINKS(lister__backspace_text_field__default, 0), "lister__backspace_text_field__default", 37, "A lister mode command that backspaces one character from the text field.", 72, "c:\\4ed\\code\\4coder_lists.cpp", 28, 139 }, -{ PROC_LINKS(lister__move_up__default, 0), "lister__move_up__default", 24, "A lister mode command that moves the highlighted item one up in the list.", 73, "c:\\4ed\\code\\4coder_lists.cpp", 28, 153 }, -{ PROC_LINKS(lister__move_down__default, 0), "lister__move_down__default", 26, "A lister mode command that moves the highlighted item one down in the list.", 75, "c:\\4ed\\code\\4coder_lists.cpp", 28, 168 }, -{ PROC_LINKS(lister__write_character__file_path, 0), "lister__write_character__file_path", 34, "A lister mode command that inserts a character into the text field of a file system list.", 89, "c:\\4ed\\code\\4coder_lists.cpp", 28, 183 }, -{ PROC_LINKS(lister__backspace_text_field__file_path, 0), "lister__backspace_text_field__file_path", 39, "A lister mode command that backspaces one character from the text field of a file system list.", 94, "c:\\4ed\\code\\4coder_lists.cpp", 28, 208 }, -{ PROC_LINKS(lister__write_character__fixed_list, 0), "lister__write_character__fixed_list", 35, "A lister mode command that handles input for the fixed sure to kill list.", 73, "c:\\4ed\\code\\4coder_lists.cpp", 28, 249 }, -{ PROC_LINKS(interactive_switch_buffer, 0), "interactive_switch_buffer", 25, "Interactively switch to an open buffer.", 39, "c:\\4ed\\code\\4coder_lists.cpp", 28, 723 }, -{ PROC_LINKS(interactive_kill_buffer, 0), "interactive_kill_buffer", 23, "Interactively kill an open buffer.", 34, "c:\\4ed\\code\\4coder_lists.cpp", 28, 742 }, -{ PROC_LINKS(interactive_open_or_new, 0), "interactive_open_or_new", 23, "Interactively open a file out of the file system.", 49, "c:\\4ed\\code\\4coder_lists.cpp", 28, 815 }, -{ PROC_LINKS(interactive_new, 0), "interactive_new", 15, "Interactively creates a new file.", 33, "c:\\4ed\\code\\4coder_lists.cpp", 28, 854 }, -{ PROC_LINKS(interactive_open, 0), "interactive_open", 16, "Interactively opens a file.", 27, "c:\\4ed\\code\\4coder_lists.cpp", 28, 887 }, -{ PROC_LINKS(command_lister, 0), "command_lister", 14, "Opens an interactive list of all registered commands.", 53, "c:\\4ed\\code\\4coder_lists.cpp", 28, 969 }, -{ PROC_LINKS(auto_tab_whole_file, 0), "auto_tab_whole_file", 19, "Audo-indents the entire current buffer.", 39, "c:\\4ed\\code\\4coder_auto_indent.cpp", 34, 546 }, -{ PROC_LINKS(auto_tab_line_at_cursor, 0), "auto_tab_line_at_cursor", 23, "Auto-indents the line on which the cursor sits.", 47, "c:\\4ed\\code\\4coder_auto_indent.cpp", 34, 555 }, -{ PROC_LINKS(auto_tab_range, 0), "auto_tab_range", 14, "Auto-indents the range between the cursor and the mark.", 55, "c:\\4ed\\code\\4coder_auto_indent.cpp", 34, 565 }, -{ PROC_LINKS(write_and_auto_tab, 0), "write_and_auto_tab", 18, "Inserts a character and auto-indents the line on which the cursor sits.", 71, "c:\\4ed\\code\\4coder_auto_indent.cpp", 34, 575 }, -{ PROC_LINKS(list_all_locations, 0), "list_all_locations", 18, "Queries the user for a string and lists all exact case-sensitive matches found in all open buffers.", 99, "c:\\4ed\\code\\4coder_search.cpp", 29, 164 }, -{ PROC_LINKS(list_all_substring_locations, 0), "list_all_substring_locations", 28, "Queries the user for a string and lists all case-sensitive substring matches found in all open buffers.", 103, "c:\\4ed\\code\\4coder_search.cpp", 29, 170 }, -{ PROC_LINKS(list_all_locations_case_insensitive, 0), "list_all_locations_case_insensitive", 35, "Queries the user for a string and lists all exact case-insensitive matches found in all open buffers.", 101, "c:\\4ed\\code\\4coder_search.cpp", 29, 176 }, -{ PROC_LINKS(list_all_substring_locations_case_insensitive, 0), "list_all_substring_locations_case_insensitive", 45, "Queries the user for a string and lists all case-insensitive substring matches found in all open buffers.", 105, "c:\\4ed\\code\\4coder_search.cpp", 29, 182 }, -{ PROC_LINKS(list_all_locations_of_identifier, 0), "list_all_locations_of_identifier", 32, "Reads a token or word under the cursor and lists all exact case-sensitive mathces in all open buffers.", 102, "c:\\4ed\\code\\4coder_search.cpp", 29, 188 }, -{ PROC_LINKS(list_all_locations_of_identifier_case_insensitive, 0), "list_all_locations_of_identifier_case_insensitive", 49, "Reads a token or word under the cursor and lists all exact case-insensitive mathces in all open buffers.", 104, "c:\\4ed\\code\\4coder_search.cpp", 29, 194 }, -{ PROC_LINKS(list_all_locations_of_selection, 0), "list_all_locations_of_selection", 31, "Reads the string in the selected range and lists all exact case-sensitive mathces in all open buffers.", 102, "c:\\4ed\\code\\4coder_search.cpp", 29, 200 }, -{ PROC_LINKS(list_all_locations_of_selection_case_insensitive, 0), "list_all_locations_of_selection_case_insensitive", 48, "Reads the string in the selected range and lists all exact case-insensitive mathces in all open buffers.", 104, "c:\\4ed\\code\\4coder_search.cpp", 29, 206 }, -{ PROC_LINKS(list_all_locations_of_type_definition, 0), "list_all_locations_of_type_definition", 37, "Queries user for string, lists all locations of strings that appear to define a type whose name matches the input string.", 121, "c:\\4ed\\code\\4coder_search.cpp", 29, 212 }, -{ PROC_LINKS(list_all_locations_of_type_definition_of_identifier, 0), "list_all_locations_of_type_definition_of_identifier", 51, "Reads a token or word under the cursor and lists all locations of strings that appear to define a type whose name matches it.", 125, "c:\\4ed\\code\\4coder_search.cpp", 29, 220 }, -{ PROC_LINKS(word_complete, 0), "word_complete", 13, "Iteratively tries completing the word to the left of the cursor with other words in open buffers that have the same prefix string.", 130, "c:\\4ed\\code\\4coder_search.cpp", 29, 374 }, -{ PROC_LINKS(goto_jump_at_cursor_direct, 0), "goto_jump_at_cursor_direct", 26, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in another view and changes the active panel to the view containing the jump.", 187, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 8 }, -{ PROC_LINKS(goto_jump_at_cursor_same_panel_direct, 0), "goto_jump_at_cursor_same_panel_direct", 37, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in this view, losing the compilation output or jump list..", 168, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 31 }, -{ PROC_LINKS(goto_next_jump_direct, 0), "goto_next_jump_direct", 21, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, skipping sub jump locations.", 123, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 52 }, -{ PROC_LINKS(goto_prev_jump_direct, 0), "goto_prev_jump_direct", 21, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, skipping sub jump locations.", 127, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 61 }, -{ PROC_LINKS(goto_next_jump_no_skips_direct, 0), "goto_next_jump_no_skips_direct", 30, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, and does not skip sub jump locations.", 132, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 70 }, -{ PROC_LINKS(goto_prev_jump_no_skips_direct, 0), "goto_prev_jump_no_skips_direct", 30, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, and does not skip sub jump locations.", 136, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 79 }, -{ PROC_LINKS(goto_first_jump_direct, 0), "goto_first_jump_direct", 22, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer.", 95, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 88 }, -{ PROC_LINKS(newline_or_goto_position_direct, 0), "newline_or_goto_position_direct", 31, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor.", 106, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 103 }, -{ PROC_LINKS(newline_or_goto_position_same_panel_direct, 0), "newline_or_goto_position_same_panel_direct", 42, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor_same_panel.", 117, "c:\\4ed\\code\\4coder_jump_direct.cpp", 34, 120 }, -{ PROC_LINKS(goto_jump_at_cursor_sticky, 0), "goto_jump_at_cursor_sticky", 26, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in another view and changes the active panel to the view containing the jump.", 187, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 352 }, -{ PROC_LINKS(goto_jump_at_cursor_same_panel_sticky, 0), "goto_jump_at_cursor_same_panel_sticky", 37, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in this view, losing the compilation output or jump list.", 167, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 379 }, -{ PROC_LINKS(goto_next_jump_sticky, 0), "goto_next_jump_sticky", 21, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, skipping sub jump locations.", 123, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 478 }, -{ PROC_LINKS(goto_prev_jump_sticky, 0), "goto_prev_jump_sticky", 21, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, skipping sub jump locations.", 127, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 495 }, -{ PROC_LINKS(goto_next_jump_no_skips_sticky, 0), "goto_next_jump_no_skips_sticky", 30, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, and does not skip sub jump locations.", 132, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 508 }, -{ PROC_LINKS(goto_prev_jump_no_skips_sticky, 0), "goto_prev_jump_no_skips_sticky", 30, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, and does not skip sub jump locations.", 136, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 525 }, -{ PROC_LINKS(goto_first_jump_sticky, 0), "goto_first_jump_sticky", 22, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer.", 95, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 539 }, -{ PROC_LINKS(goto_first_jump_same_panel_sticky, 0), "goto_first_jump_same_panel_sticky", 33, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer and views the buffer in the panel where the jump list was.", 153, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 556 }, -{ PROC_LINKS(newline_or_goto_position_sticky, 0), "newline_or_goto_position_sticky", 31, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor.", 106, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 578 }, -{ PROC_LINKS(newline_or_goto_position_same_panel_sticky, 0), "newline_or_goto_position_same_panel_sticky", 42, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor_same_panel.", 117, "c:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 595 }, -{ PROC_LINKS(view_jump_list_with_lister, 0), "view_jump_list_with_lister", 26, "When executed on a buffer with jumps, creates a persistent lister for all the jumps", 83, "c:\\4ed\\code\\4coder_jump_lister.cpp", 34, 104 }, -{ PROC_LINKS(copy, 0), "copy", 4, "Copy the text in the range from the cursor to the mark onto the clipboard.", 74, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 19 }, -{ PROC_LINKS(cut, 0), "cut", 3, "Cut the text in the range from the cursor to the mark onto the clipboard.", 73, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 28 }, -{ PROC_LINKS(paste, 0), "paste", 5, "At the cursor, insert the text at the top of the clipboard.", 59, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 39 }, -{ PROC_LINKS(paste_next, 0), "paste_next", 10, "If the previous command was paste or paste_next, replaces the paste range with the next text down on the clipboard, otherwise operates as the paste command.", 156, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 72 }, -{ PROC_LINKS(paste_and_indent, 0), "paste_and_indent", 16, "Paste from the top of clipboard and run auto-indent on the newly pasted text.", 77, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 114 }, -{ PROC_LINKS(paste_next_and_indent, 0), "paste_next_and_indent", 21, "Paste the next item on the clipboard and run auto-indent on the newly pasted text.", 82, "c:\\4ed\\code\\4coder_clipboard.cpp", 32, 121 }, -{ PROC_LINKS(execute_previous_cli, 0), "execute_previous_cli", 20, "If the command execute_any_cli has already been used, this will execute a CLI reusing the most recent buffer name and command.", 126, "c:\\4ed\\code\\4coder_system_command.cpp", 37, 7 }, -{ PROC_LINKS(execute_any_cli, 0), "execute_any_cli", 15, "Queries for an output buffer name and system command, runs the system command as a CLI and prints the output to the specified buffer.", 133, "c:\\4ed\\code\\4coder_system_command.cpp", 37, 22 }, -{ PROC_LINKS(build_search, 0), "build_search", 12, "Looks for a build.bat, build.sh, or makefile in the current and parent directories. Runs the first that it finds and prints the output to *compilation*.", 153, "c:\\4ed\\code\\4coder_build_commands.cpp", 37, 128 }, -{ PROC_LINKS(build_in_build_panel, 0), "build_in_build_panel", 20, "Looks for a build.bat, build.sh, or makefile in the current and parent directories. Runs the first that it finds and prints the output to *compilation*. Puts the *compilation* buffer in a panel at the footer of the current view.", 230, "c:\\4ed\\code\\4coder_build_commands.cpp", 37, 163 }, -{ PROC_LINKS(close_build_panel, 0), "close_build_panel", 17, "If the special build panel is open, closes it.", 46, "c:\\4ed\\code\\4coder_build_commands.cpp", 37, 178 }, -{ PROC_LINKS(change_to_build_panel, 0), "change_to_build_panel", 21, "If the special build panel is open, makes the build panel the active panel.", 75, "c:\\4ed\\code\\4coder_build_commands.cpp", 37, 184 }, -{ PROC_LINKS(close_all_code, 0), "close_all_code", 14, "Closes any buffer with a filename ending with an extension configured to be recognized as a code file type.", 107, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 921 }, -{ PROC_LINKS(open_all_code, 0), "open_all_code", 13, "Open all code in the current directory. File types are determined by extensions. An extension is considered code based on the extensions specified in 4coder.config.", 164, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 927 }, -{ PROC_LINKS(open_all_code_recursive, 0), "open_all_code_recursive", 23, "Works as open_all_code but also runs in all subdirectories.", 59, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 933 }, -{ PROC_LINKS(load_project, 0), "load_project", 12, "Looks for a project.4coder file in the current directory and tries to load it. Looks in parent directories until a project file is found or there are no more parents.", 167, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 941 }, -{ PROC_LINKS(project_fkey_command, 0), "project_fkey_command", 20, "Run an 'fkey command' configured in a project.4coder file. Determines the index of the 'fkey command' by which function key or numeric key was pressed to trigger the command.", 175, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 948 }, -{ PROC_LINKS(project_go_to_root_directory, 0), "project_go_to_root_directory", 28, "Changes 4coder's hot directory to the root directory of the currently loaded project. With no loaded project nothing hapepns.", 125, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 971 }, -{ PROC_LINKS(setup_new_project, 0), "setup_new_project", 17, "Queries the user for several configuration options and initializes a new 4coder project with build scripts for every OS.", 120, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 1306 }, -{ PROC_LINKS(setup_build_bat, 0), "setup_build_bat", 15, "Queries the user for several configuration options and initializes a new build batch script.", 92, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 1313 }, -{ PROC_LINKS(setup_build_sh, 0), "setup_build_sh", 14, "Queries the user for several configuration options and initializes a new build shell script.", 92, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 1319 }, -{ PROC_LINKS(setup_build_bat_and_sh, 0), "setup_build_bat_and_sh", 22, "Queries the user for several configuration options and initializes a new build batch script.", 92, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 1325 }, -{ PROC_LINKS(project_command_lister, 0), "project_command_lister", 22, "Open a lister of all commands in the currently loaded project.", 62, "c:\\4ed\\code\\4coder_project_commands.cpp", 39, 1340 }, -{ PROC_LINKS(list_all_functions_current_buffer, 0), "list_all_functions_current_buffer", 33, "Creates a jump list of lines of the current buffer that appear to define or declare functions.", 94, "c:\\4ed\\code\\4coder_function_list.cpp", 36, 266 }, -{ PROC_LINKS(list_all_functions_current_buffer_lister, 0), "list_all_functions_current_buffer_lister", 40, "Creates a lister of locations that look like function definitions and declarations in the buffer.", 97, "c:\\4ed\\code\\4coder_function_list.cpp", 36, 276 }, -{ PROC_LINKS(list_all_functions_all_buffers, 0), "list_all_functions_all_buffers", 30, "Creates a jump list of lines from all buffers that appear to define or declare functions.", 89, "c:\\4ed\\code\\4coder_function_list.cpp", 36, 288 }, -{ PROC_LINKS(list_all_functions_all_buffers_lister, 0), "list_all_functions_all_buffers_lister", 37, "Creates a lister of locations that look like function definitions and declarations all buffers.", 95, "c:\\4ed\\code\\4coder_function_list.cpp", 36, 294 }, -{ PROC_LINKS(select_surrounding_scope, 0), "select_surrounding_scope", 24, "Finds the scope enclosed by '{' '}' surrounding the cursor and puts the cursor and mark on the '{' and '}'.", 107, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 337 }, -{ PROC_LINKS(select_next_scope_absolute, 0), "select_next_scope_absolute", 26, "Finds the first scope started by '{' after the cursor and puts the cursor and mark on the '{' and '}'.", 102, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 352 }, -{ PROC_LINKS(select_prev_scope_absolute, 0), "select_prev_scope_absolute", 26, "Finds the first scope started by '{' before the cursor and puts the cursor and mark on the '{' and '}'.", 103, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 371 }, -{ PROC_LINKS(place_in_scope, 0), "place_in_scope", 14, "Wraps the code contained in the range between cursor and mark with a new curly brace scope.", 91, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 445 }, -{ PROC_LINKS(delete_current_scope, 0), "delete_current_scope", 20, "Deletes the braces surrounding the currently selected scope. Leaves the contents within the scope.", 99, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 451 }, -{ PROC_LINKS(scope_absorb_down, 0), "scope_absorb_down", 17, "If a scope is currently selected, and a statement or block statement is present below the current scope, the statement is moved into the scope.", 143, "c:\\4ed\\code\\4coder_scope_commands.cpp", 37, 670 }, -{ PROC_LINKS(open_long_braces, 0), "open_long_braces", 16, "At the cursor, insert a '{' and '}' separated by a blank line.", 62, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 46 }, -{ PROC_LINKS(open_long_braces_semicolon, 0), "open_long_braces_semicolon", 26, "At the cursor, insert a '{' and '};' separated by a blank line.", 63, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 54 }, -{ PROC_LINKS(open_long_braces_break, 0), "open_long_braces_break", 22, "At the cursor, insert a '{' and '}break;' separated by a blank line.", 68, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 62 }, -{ PROC_LINKS(if0_off, 0), "if0_off", 7, "Surround the range between the cursor and mark with an '#if 0' and an '#endif'", 78, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 70 }, -{ PROC_LINKS(write_todo, 0), "write_todo", 10, "At the cursor, insert a '// TODO' comment, includes user name if it was specified in config.4coder.", 99, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 76 }, -{ PROC_LINKS(write_hack, 0), "write_hack", 10, "At the cursor, insert a '// HACK' comment, includes user name if it was specified in config.4coder.", 99, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 82 }, -{ PROC_LINKS(write_note, 0), "write_note", 10, "At the cursor, insert a '// NOTE' comment, includes user name if it was specified in config.4coder.", 99, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 88 }, -{ PROC_LINKS(write_block, 0), "write_block", 11, "At the cursor, insert a block comment.", 38, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 94 }, -{ PROC_LINKS(write_zero_struct, 0), "write_zero_struct", 17, "At the cursor, insert a ' = {};'.", 33, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 100 }, -{ PROC_LINKS(comment_line, 0), "comment_line", 12, "Insert '//' at the beginning of the line after leading whitespace.", 66, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 125 }, -{ PROC_LINKS(uncomment_line, 0), "uncomment_line", 14, "If present, delete '//' at the beginning of the line after leading whitespace.", 78, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 137 }, -{ PROC_LINKS(comment_line_toggle, 0), "comment_line_toggle", 19, "Turns uncommented lines into commented lines and vice versa for comments starting with '//'.", 92, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 149 }, -{ PROC_LINKS(snippet_lister, 0), "snippet_lister", 14, "Opens a snippet lister for inserting whole pre-written snippets of text.", 72, "c:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 235 }, -{ PROC_LINKS(set_bindings_choose, 0), "set_bindings_choose", 19, "Remap keybindings using the 'choose' mapping rule.", 50, "c:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 39 }, -{ PROC_LINKS(set_bindings_default, 0), "set_bindings_default", 20, "Remap keybindings using the 'default' mapping rule.", 51, "c:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 49 }, -{ PROC_LINKS(set_bindings_mac_default, 0), "set_bindings_mac_default", 24, "Remap keybindings using the 'mac-default' mapping rule.", 55, "c:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 64 }, -{ PROC_LINKS(miblo_increment_basic, 0), "miblo_increment_basic", 21, "Increment an integer under the cursor by one.", 45, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 29 }, -{ PROC_LINKS(miblo_decrement_basic, 0), "miblo_decrement_basic", 21, "Decrement an integer under the cursor by one.", 45, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 44 }, -{ PROC_LINKS(miblo_increment_time_stamp, 0), "miblo_increment_time_stamp", 26, "Increment a time stamp under the cursor by one second. (format [m]m:ss or h:mm:ss", 81, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 231 }, -{ PROC_LINKS(miblo_decrement_time_stamp, 0), "miblo_decrement_time_stamp", 26, "Decrement a time stamp under the cursor by one second. (format [m]m:ss or h:mm:ss", 81, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 237 }, -{ PROC_LINKS(miblo_increment_time_stamp_minute, 0), "miblo_increment_time_stamp_minute", 33, "Increment a time stamp under the cursor by one minute. (format [m]m:ss or h:mm:ss", 81, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 243 }, -{ PROC_LINKS(miblo_decrement_time_stamp_minute, 0), "miblo_decrement_time_stamp_minute", 33, "Decrement a time stamp under the cursor by one minute. (format [m]m:ss or h:mm:ss", 81, "c:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 249 }, -{ PROC_LINKS(kill_rect, 0), "kill_rect", 9, "Delete characters in a rectangular region. Range testing is done by unwrapped-xy coordinates.", 93, "c:\\4ed\\code\\4coder_experiments.cpp", 34, 44 }, -{ PROC_LINKS(multi_line_edit, 0), "multi_line_edit", 15, "Begin multi-line mode. In multi-line mode characters are inserted at every line between the mark and cursor. All characters are inserted at the same character offset into the line. This mode uses line_char coordinates.", 221, "c:\\4ed\\code\\4coder_experiments.cpp", 34, 125 }, -{ PROC_LINKS(rename_parameter, 0), "rename_parameter", 16, "If the cursor is found to be on the name of a function parameter in the signature of a function definition, all occurences within the scope of the function will be replaced with a new provided string.", 200, "c:\\4ed\\code\\4coder_experiments.cpp", 34, 386 }, -{ PROC_LINKS(write_explicit_enum_values, 0), "write_explicit_enum_values", 26, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in sequentially starting from zero. Existing values are overwritten.", 170, "c:\\4ed\\code\\4coder_experiments.cpp", 34, 693 }, +static Command_Metadata fcoder_metacmd_table[238] = { +{ PROC_LINKS(write_explicit_enum_flags, 0), "write_explicit_enum_flags", 25, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in to give each a unique power of 2 value, starting from 1. Existing values are overwritten.", 194, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 699 }, +{ PROC_LINKS(parse_the_log, 0), "parse_the_log", 13, "Tests the log parser", 20, "w:\\4ed\\code\\4coder_log_parser.cpp", 33, 357 }, +{ PROC_LINKS(seek_beginning_of_textual_line, 0), "seek_beginning_of_textual_line", 30, "Seeks the cursor to the beginning of the line across all text.", 62, "w:\\4ed\\code\\4coder_seek.cpp", 27, 28 }, +{ PROC_LINKS(seek_end_of_textual_line, 0), "seek_end_of_textual_line", 24, "Seeks the cursor to the end of the line across all text.", 56, "w:\\4ed\\code\\4coder_seek.cpp", 27, 34 }, +{ PROC_LINKS(seek_beginning_of_line, 0), "seek_beginning_of_line", 22, "Seeks the cursor to the beginning of the visual line.", 53, "w:\\4ed\\code\\4coder_seek.cpp", 27, 40 }, +{ PROC_LINKS(seek_end_of_line, 0), "seek_end_of_line", 16, "Seeks the cursor to the end of the visual line.", 47, "w:\\4ed\\code\\4coder_seek.cpp", 27, 46 }, +{ PROC_LINKS(goto_beginning_of_file, 0), "goto_beginning_of_file", 22, "Sets the cursor to the beginning of the file.", 45, "w:\\4ed\\code\\4coder_seek.cpp", 27, 52 }, +{ PROC_LINKS(goto_end_of_file, 0), "goto_end_of_file", 16, "Sets the cursor to the end of the file.", 39, "w:\\4ed\\code\\4coder_seek.cpp", 27, 60 }, +{ PROC_LINKS(change_active_panel, 0), "change_active_panel", 19, "Change the currently active panel, moving to the panel with the next highest view_id.", 85, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 201 }, +{ PROC_LINKS(change_active_panel_backwards, 0), "change_active_panel_backwards", 29, "Change the currently active panel, moving to the panel with the next lowest view_id.", 84, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 211 }, +{ PROC_LINKS(open_panel_vsplit, 0), "open_panel_vsplit", 17, "Create a new panel by vertically splitting the active panel.", 60, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 221 }, +{ PROC_LINKS(open_panel_hsplit, 0), "open_panel_hsplit", 17, "Create a new panel by horizontally splitting the active panel.", 62, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 231 }, +{ PROC_LINKS(suppress_mouse, 0), "suppress_mouse", 14, "Hides the mouse and causes all mosue input (clicks, position, wheel) to be ignored.", 83, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 292 }, +{ PROC_LINKS(allow_mouse, 0), "allow_mouse", 11, "Shows the mouse and causes all mouse input to be processed normally.", 68, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 298 }, +{ PROC_LINKS(toggle_mouse, 0), "toggle_mouse", 12, "Toggles the mouse suppression mode, see suppress_mouse and allow_mouse.", 71, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 304 }, +{ PROC_LINKS(set_mode_to_original, 0), "set_mode_to_original", 20, "Sets the edit mode to 4coder original.", 38, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 310 }, +{ PROC_LINKS(set_mode_to_notepad_like, 0), "set_mode_to_notepad_like", 24, "Sets the edit mode to Notepad like.", 35, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 316 }, +{ PROC_LINKS(toggle_highlight_line_at_cursor, 0), "toggle_highlight_line_at_cursor", 31, "Toggles the line highlight at the cursor.", 41, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 322 }, +{ PROC_LINKS(toggle_highlight_enclosing_scopes, 0), "toggle_highlight_enclosing_scopes", 33, "In code files scopes surrounding the cursor are highlighted with distinguishing colors.", 87, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 328 }, +{ PROC_LINKS(toggle_paren_matching_helper, 0), "toggle_paren_matching_helper", 28, "In code files matching parentheses pairs are colored with distinguishing colors.", 80, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 334 }, +{ PROC_LINKS(toggle_fullscreen, 0), "toggle_fullscreen", 17, "Toggle fullscreen mode on or off. The change(s) do not take effect until the next frame.", 89, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 340 }, +{ PROC_LINKS(remap_interactive, 0), "remap_interactive", 17, "Switch to a named key binding map.", 34, "w:\\4ed\\code\\4coder_default_framework.cpp", 40, 348 }, +{ PROC_LINKS(write_character, 0), "write_character", 15, "Inserts whatever character was used to trigger this command.", 60, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 66 }, +{ PROC_LINKS(write_underscore, 0), "write_underscore", 16, "Inserts an underscore.", 22, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 75 }, +{ PROC_LINKS(delete_char, 0), "delete_char", 11, "Deletes the character to the right of the cursor.", 49, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 82 }, +{ PROC_LINKS(backspace_char, 0), "backspace_char", 14, "Deletes the character to the left of the cursor.", 48, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 99 }, +{ PROC_LINKS(set_mark, 0), "set_mark", 8, "Sets the mark to the current position of the cursor.", 52, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 118 }, +{ PROC_LINKS(cursor_mark_swap, 0), "cursor_mark_swap", 16, "Swaps the position of the cursor and the mark.", 46, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 127 }, +{ PROC_LINKS(delete_range, 0), "delete_range", 12, "Deletes the text in the range between the cursor and the mark.", 62, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 137 }, +{ PROC_LINKS(backspace_alpha_numeric_boundary, 0), "backspace_alpha_numeric_boundary", 32, "Delete characters between the cursor position and the first alphanumeric boundary to the left.", 94, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 157 }, +{ PROC_LINKS(delete_alpha_numeric_boundary, 0), "delete_alpha_numeric_boundary", 29, "Delete characters between the cursor position and the first alphanumeric boundary to the right.", 95, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 165 }, +{ PROC_LINKS(snipe_backward_whitespace_or_token_boundary, 0), "snipe_backward_whitespace_or_token_boundary", 43, "Delete a single, whole token on or to the left of the cursor and post it to the clipboard.", 90, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 185 }, +{ PROC_LINKS(snipe_forward_whitespace_or_token_boundary, 0), "snipe_forward_whitespace_or_token_boundary", 42, "Delete a single, whole token on or to the right of the cursor and post it to the clipboard.", 91, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 193 }, +{ PROC_LINKS(center_view, 0), "center_view", 11, "Centers the view vertically on the line on which the cursor sits.", 65, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 206 }, +{ PROC_LINKS(left_adjust_view, 0), "left_adjust_view", 16, "Sets the left size of the view near the x position of the cursor.", 65, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 221 }, +{ PROC_LINKS(click_set_cursor_and_mark, 0), "click_set_cursor_and_mark", 25, "Sets the cursor position and mark to the mouse position.", 56, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 244 }, +{ PROC_LINKS(click_set_cursor, 0), "click_set_cursor", 16, "Sets the cursor position to the mouse position.", 47, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 259 }, +{ PROC_LINKS(click_set_cursor_if_lbutton, 0), "click_set_cursor_if_lbutton", 27, "If the mouse left button is pressed, sets the cursor position to the mouse position.", 84, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 273 }, +{ PROC_LINKS(click_set_mark, 0), "click_set_mark", 14, "Sets the mark position to the mouse position.", 45, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 289 }, +{ PROC_LINKS(mouse_wheel_scroll, 0), "mouse_wheel_scroll", 18, "Reads the scroll wheel value from the mouse state and scrolls accordingly.", 74, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 303 }, +{ PROC_LINKS(move_up, 0), "move_up", 7, "Moves the cursor up one line.", 29, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 364 }, +{ PROC_LINKS(move_down, 0), "move_down", 9, "Moves the cursor down one line.", 31, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 370 }, +{ PROC_LINKS(move_up_10, 0), "move_up_10", 10, "Moves the cursor up ten lines.", 30, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 376 }, +{ PROC_LINKS(move_down_10, 0), "move_down_10", 12, "Moves the cursor down ten lines.", 32, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 382 }, +{ PROC_LINKS(move_down_textual, 0), "move_down_textual", 17, "Moves down to the next line of actual text, regardless of line wrapping.", 72, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 388 }, +{ PROC_LINKS(page_up, 0), "page_up", 7, "Scrolls the view up one view height and moves the cursor up one view height.", 76, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 398 }, +{ PROC_LINKS(page_down, 0), "page_down", 9, "Scrolls the view down one view height and moves the cursor down one view height.", 80, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 406 }, +{ PROC_LINKS(move_up_to_blank_line, 0), "move_up_to_blank_line", 21, "Seeks the cursor up to the next blank line.", 43, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 435 }, +{ PROC_LINKS(move_down_to_blank_line, 0), "move_down_to_blank_line", 23, "Seeks the cursor down to the next blank line.", 45, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 441 }, +{ PROC_LINKS(move_up_to_blank_line_skip_whitespace, 0), "move_up_to_blank_line_skip_whitespace", 37, "Seeks the cursor up to the next blank line and places it at the end of the line.", 80, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 447 }, +{ PROC_LINKS(move_down_to_blank_line_skip_whitespace, 0), "move_down_to_blank_line_skip_whitespace", 39, "Seeks the cursor down to the next blank line and places it at the end of the line.", 82, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 453 }, +{ PROC_LINKS(move_up_to_blank_line_end, 0), "move_up_to_blank_line_end", 25, "Seeks the cursor up to the next blank line and places it at the end of the line.", 80, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 459 }, +{ PROC_LINKS(move_down_to_blank_line_end, 0), "move_down_to_blank_line_end", 27, "Seeks the cursor down to the next blank line and places it at the end of the line.", 82, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 465 }, +{ PROC_LINKS(move_left, 0), "move_left", 9, "Moves the cursor one character to the left.", 43, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 476 }, +{ PROC_LINKS(move_right, 0), "move_right", 10, "Moves the cursor one character to the right.", 44, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 487 }, +{ PROC_LINKS(move_right_whitespace_boundary, 0), "move_right_whitespace_boundary", 30, "Seek right for the next boundary between whitespace and non-whitespace.", 71, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 508 }, +{ PROC_LINKS(move_left_whitespace_boundary, 0), "move_left_whitespace_boundary", 29, "Seek left for the next boundary between whitespace and non-whitespace.", 70, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 516 }, +{ PROC_LINKS(move_right_token_boundary, 0), "move_right_token_boundary", 25, "Seek right for the next end of a token.", 39, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 524 }, +{ PROC_LINKS(move_left_token_boundary, 0), "move_left_token_boundary", 24, "Seek left for the next beginning of a token.", 44, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 532 }, +{ PROC_LINKS(move_right_whitespace_or_token_boundary, 0), "move_right_whitespace_or_token_boundary", 39, "Seek right for the next end of a token or boundary between whitespace and non-whitespace.", 89, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 540 }, +{ PROC_LINKS(move_left_whitespace_or_token_boundary, 0), "move_left_whitespace_or_token_boundary", 38, "Seek left for the next end of a token or boundary between whitespace and non-whitespace.", 88, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 548 }, +{ PROC_LINKS(move_right_alpha_numeric_boundary, 0), "move_right_alpha_numeric_boundary", 33, "Seek right for boundary between alphanumeric characters and non-alphanumeric characters.", 88, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 556 }, +{ PROC_LINKS(move_left_alpha_numeric_boundary, 0), "move_left_alpha_numeric_boundary", 32, "Seek left for boundary between alphanumeric characters and non-alphanumeric characters.", 87, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 564 }, +{ PROC_LINKS(move_right_alpha_numeric_or_camel_boundary, 0), "move_right_alpha_numeric_or_camel_boundary", 42, "Seek right for boundary between alphanumeric characters or camel case word and non-alphanumeric characters.", 107, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 572 }, +{ PROC_LINKS(move_left_alpha_numeric_or_camel_boundary, 0), "move_left_alpha_numeric_or_camel_boundary", 41, "Seek left for boundary between alphanumeric characters or camel case word and non-alphanumeric characters.", 106, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 580 }, +{ PROC_LINKS(select_all, 0), "select_all", 10, "Puts the cursor at the top of the file, and the mark at the bottom of the file.", 79, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 601 }, +{ PROC_LINKS(to_uppercase, 0), "to_uppercase", 12, "Converts all ascii text in the range between the cursor and the mark to uppercase.", 82, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 614 }, +{ PROC_LINKS(to_lowercase, 0), "to_lowercase", 12, "Converts all ascii text in the range between the cursor and the mark to lowercase.", 82, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 627 }, +{ PROC_LINKS(clean_all_lines, 0), "clean_all_lines", 15, "Removes trailing whitespace from all lines in the current buffer.", 65, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 640 }, +{ PROC_LINKS(basic_change_active_panel, 0), "basic_change_active_panel", 25, "Change the currently active panel, moving to the panel with the next highest view_id. Will not skipe the build panel if it is open.", 132, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 678 }, +{ PROC_LINKS(close_panel, 0), "close_panel", 11, "Closes the currently active panel if it is not the only panel open.", 67, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 686 }, +{ PROC_LINKS(show_scrollbar, 0), "show_scrollbar", 14, "Sets the current view to show it's scrollbar.", 45, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 695 }, +{ PROC_LINKS(hide_scrollbar, 0), "hide_scrollbar", 14, "Sets the current view to hide it's scrollbar.", 45, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 702 }, +{ PROC_LINKS(show_filebar, 0), "show_filebar", 12, "Sets the current view to show it's filebar.", 43, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 709 }, +{ PROC_LINKS(hide_filebar, 0), "hide_filebar", 12, "Sets the current view to hide it's filebar.", 43, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 716 }, +{ PROC_LINKS(toggle_filebar, 0), "toggle_filebar", 14, "Toggles the visibility status of the current view's filebar.", 60, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 723 }, +{ PROC_LINKS(toggle_line_wrap, 0), "toggle_line_wrap", 16, "Toggles the current buffer's line wrapping status.", 50, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 732 }, +{ PROC_LINKS(toggle_fps_meter, 0), "toggle_fps_meter", 16, "Toggles the visibility of the FPS performance meter", 51, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 742 }, +{ PROC_LINKS(increase_line_wrap, 0), "increase_line_wrap", 18, "Increases the current buffer's width for line wrapping.", 55, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 748 }, +{ PROC_LINKS(decrease_line_wrap, 0), "decrease_line_wrap", 18, "Decrases the current buffer's width for line wrapping.", 54, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 758 }, +{ PROC_LINKS(increase_face_size, 0), "increase_face_size", 18, "Increase the size of the face used by the current buffer.", 57, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 768 }, +{ PROC_LINKS(decrease_face_size, 0), "decrease_face_size", 18, "Decrease the size of the face used by the current buffer.", 57, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 779 }, +{ PROC_LINKS(mouse_wheel_change_face_size, 0), "mouse_wheel_change_face_size", 28, "Reads the state of the mouse wheel and uses it to either increase or decrease the face size.", 92, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 790 }, +{ PROC_LINKS(toggle_virtual_whitespace, 0), "toggle_virtual_whitespace", 25, "Toggles the current buffer's virtual whitespace status.", 55, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 807 }, +{ PROC_LINKS(toggle_show_whitespace, 0), "toggle_show_whitespace", 22, "Toggles the current buffer's whitespace visibility status.", 58, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 817 }, +{ PROC_LINKS(toggle_line_numbers, 0), "toggle_line_numbers", 19, "Toggles the left margin line numbers.", 37, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 826 }, +{ PROC_LINKS(eol_dosify, 0), "eol_dosify", 10, "Puts the buffer in DOS line ending mode.", 40, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 832 }, +{ PROC_LINKS(eol_nixify, 0), "eol_nixify", 10, "Puts the buffer in NIX line ending mode.", 40, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 840 }, +{ PROC_LINKS(exit_4coder, 0), "exit_4coder", 11, "Attempts to close 4coder.", 25, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 848 }, +{ PROC_LINKS(goto_line, 0), "goto_line", 9, "Queries the user for a number, and jumps the cursor to the corresponding line.", 78, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 856 }, +{ PROC_LINKS(search, 0), "search", 6, "Begins an incremental search down through the current buffer for a user specified string.", 89, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1067 }, +{ PROC_LINKS(reverse_search, 0), "reverse_search", 14, "Begins an incremental search up through the current buffer for a user specified string.", 87, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1073 }, +{ PROC_LINKS(search_identifier, 0), "search_identifier", 17, "Begins an incremental search down through the current buffer for the word or token under the cursor.", 100, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1079 }, +{ PROC_LINKS(reverse_search_identifier, 0), "reverse_search_identifier", 25, "Begins an incremental search up through the current buffer for the word or token under the cursor.", 98, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1090 }, +{ PROC_LINKS(replace_in_range, 0), "replace_in_range", 16, "Queries the user for a needle and string. Replaces all occurences of needle with string in the range between cursor and the mark in the active buffer.", 150, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1141 }, +{ PROC_LINKS(replace_in_buffer, 0), "replace_in_buffer", 17, "Queries the user for a needle and string. Replaces all occurences of needle with string in the active buffer.", 109, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1150 }, +{ PROC_LINKS(replace_in_all_buffers, 0), "replace_in_all_buffers", 22, "Queries the user for a needle and string. Replaces all occurences of needle with string in all editable buffers.", 112, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1159 }, +{ PROC_LINKS(query_replace, 0), "query_replace", 13, "Queries the user for two strings, and incrementally replaces every occurence of the first string with the second string.", 120, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1247 }, +{ PROC_LINKS(query_replace_identifier, 0), "query_replace_identifier", 24, "Queries the user for a string, and incrementally replace every occurence of the word or token found at the cursor with the specified string.", 140, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1267 }, +{ PROC_LINKS(query_replace_selection, 0), "query_replace_selection", 23, "Queries the user for a string, and incrementally replace every occurence of the string found in the selected range with the specified string.", 141, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1283 }, +{ PROC_LINKS(save_all_dirty_buffers, 0), "save_all_dirty_buffers", 22, "Saves all buffers marked dirty (showing the '*' indicator).", 59, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1318 }, +{ PROC_LINKS(delete_file_query, 0), "delete_file_query", 17, "Deletes the file of the current buffer if 4coder has the appropriate access rights. Will ask the user for confirmation first.", 125, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1343 }, +{ PROC_LINKS(save_to_query, 0), "save_to_query", 13, "Queries the user for a file name and saves the contents of the current buffer, altering the buffer's name too.", 110, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1381 }, +{ PROC_LINKS(rename_file_query, 0), "rename_file_query", 17, "Queries the user for a new name and renames the file of the current buffer, altering the buffer's name too.", 107, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1416 }, +{ PROC_LINKS(make_directory_query, 0), "make_directory_query", 20, "Queries the user for a name and creates a new directory with the given name.", 76, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1456 }, +{ PROC_LINKS(move_line_up, 0), "move_line_up", 12, "Swaps the line under the cursor with the line above it, and moves the cursor up with it.", 88, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1489 }, +{ PROC_LINKS(move_line_down, 0), "move_line_down", 14, "Swaps the line under the cursor with the line below it, and moves the cursor down with it.", 90, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1495 }, +{ PROC_LINKS(duplicate_line, 0), "duplicate_line", 14, "Create a copy of the line on which the cursor sits.", 51, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1501 }, +{ PROC_LINKS(delete_line, 0), "delete_line", 11, "Delete the line the on which the cursor sits.", 45, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1515 }, +{ PROC_LINKS(open_file_in_quotes, 0), "open_file_in_quotes", 19, "Reads a filename from surrounding '\"' characters and attempts to open the corresponding file.", 94, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1580 }, +{ PROC_LINKS(open_matching_file_cpp, 0), "open_matching_file_cpp", 22, "If the current file is a *.cpp or *.h, attempts to open the corresponding *.h or *.cpp file in the other view.", 110, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1612 }, +{ PROC_LINKS(view_buffer_other_panel, 0), "view_buffer_other_panel", 23, "Set the other non-active panel to view the buffer that the active panel views, and switch to that panel.", 104, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1625 }, +{ PROC_LINKS(swap_buffers_between_panels, 0), "swap_buffers_between_panels", 27, "Set the other non-active panel to view the buffer that the active panel views, and switch to that panel.", 104, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1637 }, +{ PROC_LINKS(kill_buffer, 0), "kill_buffer", 11, "Kills the current buffer.", 25, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1671 }, +{ PROC_LINKS(save, 0), "save", 4, "Saves the current buffer.", 25, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1679 }, +{ PROC_LINKS(reopen, 0), "reopen", 6, "Reopen the current buffer from the hard drive.", 46, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1691 }, +{ PROC_LINKS(undo, 0), "undo", 4, "Advances backwards through the undo history of the current buffer.", 66, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1749 }, +{ PROC_LINKS(redo, 0), "redo", 4, "Advances forwards through the undo history of the current buffer.", 65, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1762 }, +{ PROC_LINKS(undo_all_buffers, 0), "undo_all_buffers", 16, "Advances backward through the undo history in the buffer containing the most recent regular edit.", 97, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1776 }, +{ PROC_LINKS(redo_all_buffers, 0), "redo_all_buffers", 16, "Advances forward through the undo history in the buffer containing the most recent regular edit.", 96, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1850 }, +{ PROC_LINKS(open_in_other, 0), "open_in_other", 13, "Interactively opens a file in the other panel.", 46, "w:\\4ed\\code\\4coder_base_commands.cpp", 36, 1953 }, +{ PROC_LINKS(lister__quit, 0), "lister__quit", 12, "A lister mode command that quits the list without executing any actions.", 72, "w:\\4ed\\code\\4coder_lists.cpp", 28, 8 }, +{ PROC_LINKS(lister__activate, 0), "lister__activate", 16, "A lister mode command that activates the list's action on the highlighted item.", 79, "w:\\4ed\\code\\4coder_lists.cpp", 28, 15 }, +{ PROC_LINKS(lister__write_character, 0), "lister__write_character", 23, "A lister mode command that dispatches to the lister's write character handler.", 78, "w:\\4ed\\code\\4coder_lists.cpp", 28, 30 }, +{ PROC_LINKS(lister__backspace_text_field, 0), "lister__backspace_text_field", 28, "A lister mode command that dispatches to the lister's backspace text field handler.", 83, "w:\\4ed\\code\\4coder_lists.cpp", 28, 40 }, +{ PROC_LINKS(lister__move_up, 0), "lister__move_up", 15, "A lister mode command that dispatches to the lister's navigate up handler.", 74, "w:\\4ed\\code\\4coder_lists.cpp", 28, 50 }, +{ PROC_LINKS(lister__move_down, 0), "lister__move_down", 17, "A lister mode command that dispatches to the lister's navigate down handler.", 76, "w:\\4ed\\code\\4coder_lists.cpp", 28, 60 }, +{ PROC_LINKS(lister__wheel_scroll, 0), "lister__wheel_scroll", 20, "A lister mode command that scrolls the list in response to the mouse wheel.", 75, "w:\\4ed\\code\\4coder_lists.cpp", 28, 70 }, +{ PROC_LINKS(lister__mouse_press, 0), "lister__mouse_press", 19, "A lister mode command that beings a click interaction with a list item under the mouse.", 87, "w:\\4ed\\code\\4coder_lists.cpp", 28, 84 }, +{ PROC_LINKS(lister__mouse_release, 0), "lister__mouse_release", 21, "A lister mode command that ends a click interaction with a list item under the mouse, possibly activating it.", 109, "w:\\4ed\\code\\4coder_lists.cpp", 28, 95 }, +{ PROC_LINKS(lister__repaint, 0), "lister__repaint", 15, "A lister mode command that updates the lists UI data.", 53, "w:\\4ed\\code\\4coder_lists.cpp", 28, 110 }, +{ PROC_LINKS(lister__write_character__default, 0), "lister__write_character__default", 32, "A lister mode command that inserts a new character to the text field.", 69, "w:\\4ed\\code\\4coder_lists.cpp", 28, 120 }, +{ PROC_LINKS(lister__backspace_text_field__default, 0), "lister__backspace_text_field__default", 37, "A lister mode command that backspaces one character from the text field.", 72, "w:\\4ed\\code\\4coder_lists.cpp", 28, 139 }, +{ PROC_LINKS(lister__move_up__default, 0), "lister__move_up__default", 24, "A lister mode command that moves the highlighted item one up in the list.", 73, "w:\\4ed\\code\\4coder_lists.cpp", 28, 153 }, +{ PROC_LINKS(lister__move_down__default, 0), "lister__move_down__default", 26, "A lister mode command that moves the highlighted item one down in the list.", 75, "w:\\4ed\\code\\4coder_lists.cpp", 28, 168 }, +{ PROC_LINKS(lister__write_character__file_path, 0), "lister__write_character__file_path", 34, "A lister mode command that inserts a character into the text field of a file system list.", 89, "w:\\4ed\\code\\4coder_lists.cpp", 28, 183 }, +{ PROC_LINKS(lister__backspace_text_field__file_path, 0), "lister__backspace_text_field__file_path", 39, "A lister mode command that backspaces one character from the text field of a file system list.", 94, "w:\\4ed\\code\\4coder_lists.cpp", 28, 208 }, +{ PROC_LINKS(lister__write_character__fixed_list, 0), "lister__write_character__fixed_list", 35, "A lister mode command that handles input for the fixed sure to kill list.", 73, "w:\\4ed\\code\\4coder_lists.cpp", 28, 249 }, +{ PROC_LINKS(interactive_switch_buffer, 0), "interactive_switch_buffer", 25, "Interactively switch to an open buffer.", 39, "w:\\4ed\\code\\4coder_lists.cpp", 28, 723 }, +{ PROC_LINKS(interactive_kill_buffer, 0), "interactive_kill_buffer", 23, "Interactively kill an open buffer.", 34, "w:\\4ed\\code\\4coder_lists.cpp", 28, 742 }, +{ PROC_LINKS(interactive_open_or_new, 0), "interactive_open_or_new", 23, "Interactively open a file out of the file system.", 49, "w:\\4ed\\code\\4coder_lists.cpp", 28, 815 }, +{ PROC_LINKS(interactive_new, 0), "interactive_new", 15, "Interactively creates a new file.", 33, "w:\\4ed\\code\\4coder_lists.cpp", 28, 854 }, +{ PROC_LINKS(interactive_open, 0), "interactive_open", 16, "Interactively opens a file.", 27, "w:\\4ed\\code\\4coder_lists.cpp", 28, 887 }, +{ PROC_LINKS(command_lister, 0), "command_lister", 14, "Opens an interactive list of all registered commands.", 53, "w:\\4ed\\code\\4coder_lists.cpp", 28, 969 }, +{ PROC_LINKS(auto_tab_whole_file, 0), "auto_tab_whole_file", 19, "Audo-indents the entire current buffer.", 39, "w:\\4ed\\code\\4coder_auto_indent.cpp", 34, 546 }, +{ PROC_LINKS(auto_tab_line_at_cursor, 0), "auto_tab_line_at_cursor", 23, "Auto-indents the line on which the cursor sits.", 47, "w:\\4ed\\code\\4coder_auto_indent.cpp", 34, 555 }, +{ PROC_LINKS(auto_tab_range, 0), "auto_tab_range", 14, "Auto-indents the range between the cursor and the mark.", 55, "w:\\4ed\\code\\4coder_auto_indent.cpp", 34, 565 }, +{ PROC_LINKS(write_and_auto_tab, 0), "write_and_auto_tab", 18, "Inserts a character and auto-indents the line on which the cursor sits.", 71, "w:\\4ed\\code\\4coder_auto_indent.cpp", 34, 575 }, +{ PROC_LINKS(list_all_locations, 0), "list_all_locations", 18, "Queries the user for a string and lists all exact case-sensitive matches found in all open buffers.", 99, "w:\\4ed\\code\\4coder_search.cpp", 29, 164 }, +{ PROC_LINKS(list_all_substring_locations, 0), "list_all_substring_locations", 28, "Queries the user for a string and lists all case-sensitive substring matches found in all open buffers.", 103, "w:\\4ed\\code\\4coder_search.cpp", 29, 170 }, +{ PROC_LINKS(list_all_locations_case_insensitive, 0), "list_all_locations_case_insensitive", 35, "Queries the user for a string and lists all exact case-insensitive matches found in all open buffers.", 101, "w:\\4ed\\code\\4coder_search.cpp", 29, 176 }, +{ PROC_LINKS(list_all_substring_locations_case_insensitive, 0), "list_all_substring_locations_case_insensitive", 45, "Queries the user for a string and lists all case-insensitive substring matches found in all open buffers.", 105, "w:\\4ed\\code\\4coder_search.cpp", 29, 182 }, +{ PROC_LINKS(list_all_locations_of_identifier, 0), "list_all_locations_of_identifier", 32, "Reads a token or word under the cursor and lists all exact case-sensitive mathces in all open buffers.", 102, "w:\\4ed\\code\\4coder_search.cpp", 29, 188 }, +{ PROC_LINKS(list_all_locations_of_identifier_case_insensitive, 0), "list_all_locations_of_identifier_case_insensitive", 49, "Reads a token or word under the cursor and lists all exact case-insensitive mathces in all open buffers.", 104, "w:\\4ed\\code\\4coder_search.cpp", 29, 194 }, +{ PROC_LINKS(list_all_locations_of_selection, 0), "list_all_locations_of_selection", 31, "Reads the string in the selected range and lists all exact case-sensitive mathces in all open buffers.", 102, "w:\\4ed\\code\\4coder_search.cpp", 29, 200 }, +{ PROC_LINKS(list_all_locations_of_selection_case_insensitive, 0), "list_all_locations_of_selection_case_insensitive", 48, "Reads the string in the selected range and lists all exact case-insensitive mathces in all open buffers.", 104, "w:\\4ed\\code\\4coder_search.cpp", 29, 206 }, +{ PROC_LINKS(list_all_locations_of_type_definition, 0), "list_all_locations_of_type_definition", 37, "Queries user for string, lists all locations of strings that appear to define a type whose name matches the input string.", 121, "w:\\4ed\\code\\4coder_search.cpp", 29, 212 }, +{ PROC_LINKS(list_all_locations_of_type_definition_of_identifier, 0), "list_all_locations_of_type_definition_of_identifier", 51, "Reads a token or word under the cursor and lists all locations of strings that appear to define a type whose name matches it.", 125, "w:\\4ed\\code\\4coder_search.cpp", 29, 220 }, +{ PROC_LINKS(word_complete, 0), "word_complete", 13, "Iteratively tries completing the word to the left of the cursor with other words in open buffers that have the same prefix string.", 130, "w:\\4ed\\code\\4coder_search.cpp", 29, 374 }, +{ PROC_LINKS(goto_jump_at_cursor_direct, 0), "goto_jump_at_cursor_direct", 26, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in another view and changes the active panel to the view containing the jump.", 187, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 8 }, +{ PROC_LINKS(goto_jump_at_cursor_same_panel_direct, 0), "goto_jump_at_cursor_same_panel_direct", 37, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in this view, losing the compilation output or jump list..", 168, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 31 }, +{ PROC_LINKS(goto_next_jump_direct, 0), "goto_next_jump_direct", 21, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, skipping sub jump locations.", 123, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 52 }, +{ PROC_LINKS(goto_prev_jump_direct, 0), "goto_prev_jump_direct", 21, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, skipping sub jump locations.", 127, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 61 }, +{ PROC_LINKS(goto_next_jump_no_skips_direct, 0), "goto_next_jump_no_skips_direct", 30, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, and does not skip sub jump locations.", 132, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 70 }, +{ PROC_LINKS(goto_prev_jump_no_skips_direct, 0), "goto_prev_jump_no_skips_direct", 30, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, and does not skip sub jump locations.", 136, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 79 }, +{ PROC_LINKS(goto_first_jump_direct, 0), "goto_first_jump_direct", 22, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer.", 95, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 88 }, +{ PROC_LINKS(newline_or_goto_position_direct, 0), "newline_or_goto_position_direct", 31, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor.", 106, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 103 }, +{ PROC_LINKS(newline_or_goto_position_same_panel_direct, 0), "newline_or_goto_position_same_panel_direct", 42, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor_same_panel.", 117, "w:\\4ed\\code\\4coder_jump_direct.cpp", 34, 120 }, +{ PROC_LINKS(goto_jump_at_cursor_sticky, 0), "goto_jump_at_cursor_sticky", 26, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in another view and changes the active panel to the view containing the jump.", 187, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 352 }, +{ PROC_LINKS(goto_jump_at_cursor_same_panel_sticky, 0), "goto_jump_at_cursor_same_panel_sticky", 37, "If the cursor is found to be on a jump location, parses the jump location and brings up the file and position in this view, losing the compilation output or jump list.", 167, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 379 }, +{ PROC_LINKS(goto_next_jump_sticky, 0), "goto_next_jump_sticky", 21, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, skipping sub jump locations.", 123, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 478 }, +{ PROC_LINKS(goto_prev_jump_sticky, 0), "goto_prev_jump_sticky", 21, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, skipping sub jump locations.", 127, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 495 }, +{ PROC_LINKS(goto_next_jump_no_skips_sticky, 0), "goto_next_jump_no_skips_sticky", 30, "If a buffer containing jump locations has been locked in, goes to the next jump in the buffer, and does not skip sub jump locations.", 132, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 508 }, +{ PROC_LINKS(goto_prev_jump_no_skips_sticky, 0), "goto_prev_jump_no_skips_sticky", 30, "If a buffer containing jump locations has been locked in, goes to the previous jump in the buffer, and does not skip sub jump locations.", 136, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 525 }, +{ PROC_LINKS(goto_first_jump_sticky, 0), "goto_first_jump_sticky", 22, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer.", 95, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 539 }, +{ PROC_LINKS(goto_first_jump_same_panel_sticky, 0), "goto_first_jump_same_panel_sticky", 33, "If a buffer containing jump locations has been locked in, goes to the first jump in the buffer and views the buffer in the panel where the jump list was.", 153, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 556 }, +{ PROC_LINKS(newline_or_goto_position_sticky, 0), "newline_or_goto_position_sticky", 31, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor.", 106, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 578 }, +{ PROC_LINKS(newline_or_goto_position_same_panel_sticky, 0), "newline_or_goto_position_same_panel_sticky", 42, "If the buffer in the active view is writable, inserts a character, otherwise performs goto_jump_at_cursor_same_panel.", 117, "w:\\4ed\\code\\4coder_jump_sticky.cpp", 34, 595 }, +{ PROC_LINKS(view_jump_list_with_lister, 0), "view_jump_list_with_lister", 26, "When executed on a buffer with jumps, creates a persistent lister for all the jumps", 83, "w:\\4ed\\code\\4coder_jump_lister.cpp", 34, 104 }, +{ PROC_LINKS(copy, 0), "copy", 4, "Copy the text in the range from the cursor to the mark onto the clipboard.", 74, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 19 }, +{ PROC_LINKS(cut, 0), "cut", 3, "Cut the text in the range from the cursor to the mark onto the clipboard.", 73, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 28 }, +{ PROC_LINKS(paste, 0), "paste", 5, "At the cursor, insert the text at the top of the clipboard.", 59, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 39 }, +{ PROC_LINKS(paste_next, 0), "paste_next", 10, "If the previous command was paste or paste_next, replaces the paste range with the next text down on the clipboard, otherwise operates as the paste command.", 156, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 72 }, +{ PROC_LINKS(paste_and_indent, 0), "paste_and_indent", 16, "Paste from the top of clipboard and run auto-indent on the newly pasted text.", 77, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 114 }, +{ PROC_LINKS(paste_next_and_indent, 0), "paste_next_and_indent", 21, "Paste the next item on the clipboard and run auto-indent on the newly pasted text.", 82, "w:\\4ed\\code\\4coder_clipboard.cpp", 32, 121 }, +{ PROC_LINKS(execute_previous_cli, 0), "execute_previous_cli", 20, "If the command execute_any_cli has already been used, this will execute a CLI reusing the most recent buffer name and command.", 126, "w:\\4ed\\code\\4coder_system_command.cpp", 37, 7 }, +{ PROC_LINKS(execute_any_cli, 0), "execute_any_cli", 15, "Queries for an output buffer name and system command, runs the system command as a CLI and prints the output to the specified buffer.", 133, "w:\\4ed\\code\\4coder_system_command.cpp", 37, 22 }, +{ PROC_LINKS(build_search, 0), "build_search", 12, "Looks for a build.bat, build.sh, or makefile in the current and parent directories. Runs the first that it finds and prints the output to *compilation*.", 153, "w:\\4ed\\code\\4coder_build_commands.cpp", 37, 128 }, +{ PROC_LINKS(build_in_build_panel, 0), "build_in_build_panel", 20, "Looks for a build.bat, build.sh, or makefile in the current and parent directories. Runs the first that it finds and prints the output to *compilation*. Puts the *compilation* buffer in a panel at the footer of the current view.", 230, "w:\\4ed\\code\\4coder_build_commands.cpp", 37, 163 }, +{ PROC_LINKS(close_build_panel, 0), "close_build_panel", 17, "If the special build panel is open, closes it.", 46, "w:\\4ed\\code\\4coder_build_commands.cpp", 37, 178 }, +{ PROC_LINKS(change_to_build_panel, 0), "change_to_build_panel", 21, "If the special build panel is open, makes the build panel the active panel.", 75, "w:\\4ed\\code\\4coder_build_commands.cpp", 37, 184 }, +{ PROC_LINKS(close_all_code, 0), "close_all_code", 14, "Closes any buffer with a filename ending with an extension configured to be recognized as a code file type.", 107, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 921 }, +{ PROC_LINKS(open_all_code, 0), "open_all_code", 13, "Open all code in the current directory. File types are determined by extensions. An extension is considered code based on the extensions specified in 4coder.config.", 164, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 927 }, +{ PROC_LINKS(open_all_code_recursive, 0), "open_all_code_recursive", 23, "Works as open_all_code but also runs in all subdirectories.", 59, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 933 }, +{ PROC_LINKS(load_project, 0), "load_project", 12, "Looks for a project.4coder file in the current directory and tries to load it. Looks in parent directories until a project file is found or there are no more parents.", 167, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 941 }, +{ PROC_LINKS(project_fkey_command, 0), "project_fkey_command", 20, "Run an 'fkey command' configured in a project.4coder file. Determines the index of the 'fkey command' by which function key or numeric key was pressed to trigger the command.", 175, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 948 }, +{ PROC_LINKS(project_go_to_root_directory, 0), "project_go_to_root_directory", 28, "Changes 4coder's hot directory to the root directory of the currently loaded project. With no loaded project nothing hapepns.", 125, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 971 }, +{ PROC_LINKS(setup_new_project, 0), "setup_new_project", 17, "Queries the user for several configuration options and initializes a new 4coder project with build scripts for every OS.", 120, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 1306 }, +{ PROC_LINKS(setup_build_bat, 0), "setup_build_bat", 15, "Queries the user for several configuration options and initializes a new build batch script.", 92, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 1313 }, +{ PROC_LINKS(setup_build_sh, 0), "setup_build_sh", 14, "Queries the user for several configuration options and initializes a new build shell script.", 92, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 1319 }, +{ PROC_LINKS(setup_build_bat_and_sh, 0), "setup_build_bat_and_sh", 22, "Queries the user for several configuration options and initializes a new build batch script.", 92, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 1325 }, +{ PROC_LINKS(project_command_lister, 0), "project_command_lister", 22, "Open a lister of all commands in the currently loaded project.", 62, "w:\\4ed\\code\\4coder_project_commands.cpp", 39, 1340 }, +{ PROC_LINKS(list_all_functions_current_buffer, 0), "list_all_functions_current_buffer", 33, "Creates a jump list of lines of the current buffer that appear to define or declare functions.", 94, "w:\\4ed\\code\\4coder_function_list.cpp", 36, 266 }, +{ PROC_LINKS(list_all_functions_current_buffer_lister, 0), "list_all_functions_current_buffer_lister", 40, "Creates a lister of locations that look like function definitions and declarations in the buffer.", 97, "w:\\4ed\\code\\4coder_function_list.cpp", 36, 276 }, +{ PROC_LINKS(list_all_functions_all_buffers, 0), "list_all_functions_all_buffers", 30, "Creates a jump list of lines from all buffers that appear to define or declare functions.", 89, "w:\\4ed\\code\\4coder_function_list.cpp", 36, 288 }, +{ PROC_LINKS(list_all_functions_all_buffers_lister, 0), "list_all_functions_all_buffers_lister", 37, "Creates a lister of locations that look like function definitions and declarations all buffers.", 95, "w:\\4ed\\code\\4coder_function_list.cpp", 36, 294 }, +{ PROC_LINKS(select_surrounding_scope, 0), "select_surrounding_scope", 24, "Finds the scope enclosed by '{' '}' surrounding the cursor and puts the cursor and mark on the '{' and '}'.", 107, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 337 }, +{ PROC_LINKS(select_next_scope_absolute, 0), "select_next_scope_absolute", 26, "Finds the first scope started by '{' after the cursor and puts the cursor and mark on the '{' and '}'.", 102, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 352 }, +{ PROC_LINKS(select_prev_scope_absolute, 0), "select_prev_scope_absolute", 26, "Finds the first scope started by '{' before the cursor and puts the cursor and mark on the '{' and '}'.", 103, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 371 }, +{ PROC_LINKS(place_in_scope, 0), "place_in_scope", 14, "Wraps the code contained in the range between cursor and mark with a new curly brace scope.", 91, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 445 }, +{ PROC_LINKS(delete_current_scope, 0), "delete_current_scope", 20, "Deletes the braces surrounding the currently selected scope. Leaves the contents within the scope.", 99, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 451 }, +{ PROC_LINKS(scope_absorb_down, 0), "scope_absorb_down", 17, "If a scope is currently selected, and a statement or block statement is present below the current scope, the statement is moved into the scope.", 143, "w:\\4ed\\code\\4coder_scope_commands.cpp", 37, 670 }, +{ PROC_LINKS(open_long_braces, 0), "open_long_braces", 16, "At the cursor, insert a '{' and '}' separated by a blank line.", 62, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 46 }, +{ PROC_LINKS(open_long_braces_semicolon, 0), "open_long_braces_semicolon", 26, "At the cursor, insert a '{' and '};' separated by a blank line.", 63, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 54 }, +{ PROC_LINKS(open_long_braces_break, 0), "open_long_braces_break", 22, "At the cursor, insert a '{' and '}break;' separated by a blank line.", 68, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 62 }, +{ PROC_LINKS(if0_off, 0), "if0_off", 7, "Surround the range between the cursor and mark with an '#if 0' and an '#endif'", 78, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 70 }, +{ PROC_LINKS(write_todo, 0), "write_todo", 10, "At the cursor, insert a '// TODO' comment, includes user name if it was specified in config.4coder.", 99, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 76 }, +{ PROC_LINKS(write_hack, 0), "write_hack", 10, "At the cursor, insert a '// HACK' comment, includes user name if it was specified in config.4coder.", 99, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 82 }, +{ PROC_LINKS(write_note, 0), "write_note", 10, "At the cursor, insert a '// NOTE' comment, includes user name if it was specified in config.4coder.", 99, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 88 }, +{ PROC_LINKS(write_block, 0), "write_block", 11, "At the cursor, insert a block comment.", 38, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 94 }, +{ PROC_LINKS(write_zero_struct, 0), "write_zero_struct", 17, "At the cursor, insert a ' = {};'.", 33, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 100 }, +{ PROC_LINKS(comment_line, 0), "comment_line", 12, "Insert '//' at the beginning of the line after leading whitespace.", 66, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 125 }, +{ PROC_LINKS(uncomment_line, 0), "uncomment_line", 14, "If present, delete '//' at the beginning of the line after leading whitespace.", 78, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 137 }, +{ PROC_LINKS(comment_line_toggle, 0), "comment_line_toggle", 19, "Turns uncommented lines into commented lines and vice versa for comments starting with '//'.", 92, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 149 }, +{ PROC_LINKS(snippet_lister, 0), "snippet_lister", 14, "Opens a snippet lister for inserting whole pre-written snippets of text.", 72, "w:\\4ed\\code\\4coder_combined_write_commands.cpp", 46, 235 }, +{ PROC_LINKS(set_bindings_choose, 0), "set_bindings_choose", 19, "Remap keybindings using the 'choose' mapping rule.", 50, "w:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 39 }, +{ PROC_LINKS(set_bindings_default, 0), "set_bindings_default", 20, "Remap keybindings using the 'default' mapping rule.", 51, "w:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 49 }, +{ PROC_LINKS(set_bindings_mac_default, 0), "set_bindings_mac_default", 24, "Remap keybindings using the 'mac-default' mapping rule.", 55, "w:\\4ed\\code\\4coder_remapping_commands.cpp", 41, 64 }, +{ PROC_LINKS(miblo_increment_basic, 0), "miblo_increment_basic", 21, "Increment an integer under the cursor by one.", 45, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 29 }, +{ PROC_LINKS(miblo_decrement_basic, 0), "miblo_decrement_basic", 21, "Decrement an integer under the cursor by one.", 45, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 44 }, +{ PROC_LINKS(miblo_increment_time_stamp, 0), "miblo_increment_time_stamp", 26, "Increment a time stamp under the cursor by one second. (format [m]m:ss or h:mm:ss", 81, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 231 }, +{ PROC_LINKS(miblo_decrement_time_stamp, 0), "miblo_decrement_time_stamp", 26, "Decrement a time stamp under the cursor by one second. (format [m]m:ss or h:mm:ss", 81, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 237 }, +{ PROC_LINKS(miblo_increment_time_stamp_minute, 0), "miblo_increment_time_stamp_minute", 33, "Increment a time stamp under the cursor by one minute. (format [m]m:ss or h:mm:ss", 81, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 243 }, +{ PROC_LINKS(miblo_decrement_time_stamp_minute, 0), "miblo_decrement_time_stamp_minute", 33, "Decrement a time stamp under the cursor by one minute. (format [m]m:ss or h:mm:ss", 81, "w:\\4ed\\code\\4coder_miblo_numbers.cpp", 36, 249 }, +{ PROC_LINKS(kill_rect, 0), "kill_rect", 9, "Delete characters in a rectangular region. Range testing is done by unwrapped-xy coordinates.", 93, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 44 }, +{ PROC_LINKS(multi_line_edit, 0), "multi_line_edit", 15, "Begin multi-line mode. In multi-line mode characters are inserted at every line between the mark and cursor. All characters are inserted at the same character offset into the line. This mode uses line_char coordinates.", 221, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 125 }, +{ PROC_LINKS(rename_parameter, 0), "rename_parameter", 16, "If the cursor is found to be on the name of a function parameter in the signature of a function definition, all occurences within the scope of the function will be replaced with a new provided string.", 200, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 386 }, +{ PROC_LINKS(write_explicit_enum_values, 0), "write_explicit_enum_values", 26, "If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in sequentially starting from zero. Existing values are overwritten.", 170, "w:\\4ed\\code\\4coder_experiments.cpp", 34, 693 }, }; static int32_t fcoder_metacmd_ID_write_explicit_enum_flags = 0; -static int32_t fcoder_metacmd_ID_seek_beginning_of_textual_line = 1; -static int32_t fcoder_metacmd_ID_seek_end_of_textual_line = 2; -static int32_t fcoder_metacmd_ID_seek_beginning_of_line = 3; -static int32_t fcoder_metacmd_ID_seek_end_of_line = 4; -static int32_t fcoder_metacmd_ID_goto_beginning_of_file = 5; -static int32_t fcoder_metacmd_ID_goto_end_of_file = 6; -static int32_t fcoder_metacmd_ID_change_active_panel = 7; -static int32_t fcoder_metacmd_ID_change_active_panel_backwards = 8; -static int32_t fcoder_metacmd_ID_open_panel_vsplit = 9; -static int32_t fcoder_metacmd_ID_open_panel_hsplit = 10; -static int32_t fcoder_metacmd_ID_suppress_mouse = 11; -static int32_t fcoder_metacmd_ID_allow_mouse = 12; -static int32_t fcoder_metacmd_ID_toggle_mouse = 13; -static int32_t fcoder_metacmd_ID_set_mode_to_original = 14; -static int32_t fcoder_metacmd_ID_set_mode_to_notepad_like = 15; -static int32_t fcoder_metacmd_ID_toggle_highlight_line_at_cursor = 16; -static int32_t fcoder_metacmd_ID_toggle_highlight_enclosing_scopes = 17; -static int32_t fcoder_metacmd_ID_toggle_paren_matching_helper = 18; -static int32_t fcoder_metacmd_ID_toggle_fullscreen = 19; -static int32_t fcoder_metacmd_ID_remap_interactive = 20; -static int32_t fcoder_metacmd_ID_write_character = 21; -static int32_t fcoder_metacmd_ID_write_underscore = 22; -static int32_t fcoder_metacmd_ID_delete_char = 23; -static int32_t fcoder_metacmd_ID_backspace_char = 24; -static int32_t fcoder_metacmd_ID_set_mark = 25; -static int32_t fcoder_metacmd_ID_cursor_mark_swap = 26; -static int32_t fcoder_metacmd_ID_delete_range = 27; -static int32_t fcoder_metacmd_ID_backspace_alpha_numeric_boundary = 28; -static int32_t fcoder_metacmd_ID_delete_alpha_numeric_boundary = 29; -static int32_t fcoder_metacmd_ID_snipe_backward_whitespace_or_token_boundary = 30; -static int32_t fcoder_metacmd_ID_snipe_forward_whitespace_or_token_boundary = 31; -static int32_t fcoder_metacmd_ID_center_view = 32; -static int32_t fcoder_metacmd_ID_left_adjust_view = 33; -static int32_t fcoder_metacmd_ID_click_set_cursor_and_mark = 34; -static int32_t fcoder_metacmd_ID_click_set_cursor = 35; -static int32_t fcoder_metacmd_ID_click_set_cursor_if_lbutton = 36; -static int32_t fcoder_metacmd_ID_click_set_mark = 37; -static int32_t fcoder_metacmd_ID_mouse_wheel_scroll = 38; -static int32_t fcoder_metacmd_ID_move_up = 39; -static int32_t fcoder_metacmd_ID_move_down = 40; -static int32_t fcoder_metacmd_ID_move_up_10 = 41; -static int32_t fcoder_metacmd_ID_move_down_10 = 42; -static int32_t fcoder_metacmd_ID_move_down_textual = 43; -static int32_t fcoder_metacmd_ID_page_up = 44; -static int32_t fcoder_metacmd_ID_page_down = 45; -static int32_t fcoder_metacmd_ID_move_up_to_blank_line = 46; -static int32_t fcoder_metacmd_ID_move_down_to_blank_line = 47; -static int32_t fcoder_metacmd_ID_move_up_to_blank_line_skip_whitespace = 48; -static int32_t fcoder_metacmd_ID_move_down_to_blank_line_skip_whitespace = 49; -static int32_t fcoder_metacmd_ID_move_up_to_blank_line_end = 50; -static int32_t fcoder_metacmd_ID_move_down_to_blank_line_end = 51; -static int32_t fcoder_metacmd_ID_move_left = 52; -static int32_t fcoder_metacmd_ID_move_right = 53; -static int32_t fcoder_metacmd_ID_move_right_whitespace_boundary = 54; -static int32_t fcoder_metacmd_ID_move_left_whitespace_boundary = 55; -static int32_t fcoder_metacmd_ID_move_right_token_boundary = 56; -static int32_t fcoder_metacmd_ID_move_left_token_boundary = 57; -static int32_t fcoder_metacmd_ID_move_right_whitespace_or_token_boundary = 58; -static int32_t fcoder_metacmd_ID_move_left_whitespace_or_token_boundary = 59; -static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_boundary = 60; -static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_boundary = 61; -static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_or_camel_boundary = 62; -static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_or_camel_boundary = 63; -static int32_t fcoder_metacmd_ID_select_all = 64; -static int32_t fcoder_metacmd_ID_to_uppercase = 65; -static int32_t fcoder_metacmd_ID_to_lowercase = 66; -static int32_t fcoder_metacmd_ID_clean_all_lines = 67; -static int32_t fcoder_metacmd_ID_basic_change_active_panel = 68; -static int32_t fcoder_metacmd_ID_close_panel = 69; -static int32_t fcoder_metacmd_ID_show_scrollbar = 70; -static int32_t fcoder_metacmd_ID_hide_scrollbar = 71; -static int32_t fcoder_metacmd_ID_show_filebar = 72; -static int32_t fcoder_metacmd_ID_hide_filebar = 73; -static int32_t fcoder_metacmd_ID_toggle_filebar = 74; -static int32_t fcoder_metacmd_ID_toggle_line_wrap = 75; -static int32_t fcoder_metacmd_ID_toggle_fps_meter = 76; -static int32_t fcoder_metacmd_ID_increase_line_wrap = 77; -static int32_t fcoder_metacmd_ID_decrease_line_wrap = 78; -static int32_t fcoder_metacmd_ID_increase_face_size = 79; -static int32_t fcoder_metacmd_ID_decrease_face_size = 80; -static int32_t fcoder_metacmd_ID_mouse_wheel_change_face_size = 81; -static int32_t fcoder_metacmd_ID_toggle_virtual_whitespace = 82; -static int32_t fcoder_metacmd_ID_toggle_show_whitespace = 83; -static int32_t fcoder_metacmd_ID_toggle_line_numbers = 84; -static int32_t fcoder_metacmd_ID_eol_dosify = 85; -static int32_t fcoder_metacmd_ID_eol_nixify = 86; -static int32_t fcoder_metacmd_ID_exit_4coder = 87; -static int32_t fcoder_metacmd_ID_goto_line = 88; -static int32_t fcoder_metacmd_ID_search = 89; -static int32_t fcoder_metacmd_ID_reverse_search = 90; -static int32_t fcoder_metacmd_ID_search_identifier = 91; -static int32_t fcoder_metacmd_ID_reverse_search_identifier = 92; -static int32_t fcoder_metacmd_ID_replace_in_range = 93; -static int32_t fcoder_metacmd_ID_replace_in_buffer = 94; -static int32_t fcoder_metacmd_ID_replace_in_all_buffers = 95; -static int32_t fcoder_metacmd_ID_query_replace = 96; -static int32_t fcoder_metacmd_ID_query_replace_identifier = 97; -static int32_t fcoder_metacmd_ID_query_replace_selection = 98; -static int32_t fcoder_metacmd_ID_save_all_dirty_buffers = 99; -static int32_t fcoder_metacmd_ID_delete_file_query = 100; -static int32_t fcoder_metacmd_ID_save_to_query = 101; -static int32_t fcoder_metacmd_ID_rename_file_query = 102; -static int32_t fcoder_metacmd_ID_make_directory_query = 103; -static int32_t fcoder_metacmd_ID_move_line_up = 104; -static int32_t fcoder_metacmd_ID_move_line_down = 105; -static int32_t fcoder_metacmd_ID_duplicate_line = 106; -static int32_t fcoder_metacmd_ID_delete_line = 107; -static int32_t fcoder_metacmd_ID_open_file_in_quotes = 108; -static int32_t fcoder_metacmd_ID_open_matching_file_cpp = 109; -static int32_t fcoder_metacmd_ID_view_buffer_other_panel = 110; -static int32_t fcoder_metacmd_ID_swap_buffers_between_panels = 111; -static int32_t fcoder_metacmd_ID_kill_buffer = 112; -static int32_t fcoder_metacmd_ID_save = 113; -static int32_t fcoder_metacmd_ID_reopen = 114; -static int32_t fcoder_metacmd_ID_undo = 115; -static int32_t fcoder_metacmd_ID_redo = 116; -static int32_t fcoder_metacmd_ID_undo_all_buffers = 117; -static int32_t fcoder_metacmd_ID_redo_all_buffers = 118; -static int32_t fcoder_metacmd_ID_open_in_other = 119; -static int32_t fcoder_metacmd_ID_lister__quit = 120; -static int32_t fcoder_metacmd_ID_lister__activate = 121; -static int32_t fcoder_metacmd_ID_lister__write_character = 122; -static int32_t fcoder_metacmd_ID_lister__backspace_text_field = 123; -static int32_t fcoder_metacmd_ID_lister__move_up = 124; -static int32_t fcoder_metacmd_ID_lister__move_down = 125; -static int32_t fcoder_metacmd_ID_lister__wheel_scroll = 126; -static int32_t fcoder_metacmd_ID_lister__mouse_press = 127; -static int32_t fcoder_metacmd_ID_lister__mouse_release = 128; -static int32_t fcoder_metacmd_ID_lister__repaint = 129; -static int32_t fcoder_metacmd_ID_lister__write_character__default = 130; -static int32_t fcoder_metacmd_ID_lister__backspace_text_field__default = 131; -static int32_t fcoder_metacmd_ID_lister__move_up__default = 132; -static int32_t fcoder_metacmd_ID_lister__move_down__default = 133; -static int32_t fcoder_metacmd_ID_lister__write_character__file_path = 134; -static int32_t fcoder_metacmd_ID_lister__backspace_text_field__file_path = 135; -static int32_t fcoder_metacmd_ID_lister__write_character__fixed_list = 136; -static int32_t fcoder_metacmd_ID_interactive_switch_buffer = 137; -static int32_t fcoder_metacmd_ID_interactive_kill_buffer = 138; -static int32_t fcoder_metacmd_ID_interactive_open_or_new = 139; -static int32_t fcoder_metacmd_ID_interactive_new = 140; -static int32_t fcoder_metacmd_ID_interactive_open = 141; -static int32_t fcoder_metacmd_ID_command_lister = 142; -static int32_t fcoder_metacmd_ID_auto_tab_whole_file = 143; -static int32_t fcoder_metacmd_ID_auto_tab_line_at_cursor = 144; -static int32_t fcoder_metacmd_ID_auto_tab_range = 145; -static int32_t fcoder_metacmd_ID_write_and_auto_tab = 146; -static int32_t fcoder_metacmd_ID_list_all_locations = 147; -static int32_t fcoder_metacmd_ID_list_all_substring_locations = 148; -static int32_t fcoder_metacmd_ID_list_all_locations_case_insensitive = 149; -static int32_t fcoder_metacmd_ID_list_all_substring_locations_case_insensitive = 150; -static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier = 151; -static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier_case_insensitive = 152; -static int32_t fcoder_metacmd_ID_list_all_locations_of_selection = 153; -static int32_t fcoder_metacmd_ID_list_all_locations_of_selection_case_insensitive = 154; -static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition = 155; -static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition_of_identifier = 156; -static int32_t fcoder_metacmd_ID_word_complete = 157; -static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_direct = 158; -static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_direct = 159; -static int32_t fcoder_metacmd_ID_goto_next_jump_direct = 160; -static int32_t fcoder_metacmd_ID_goto_prev_jump_direct = 161; -static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_direct = 162; -static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_direct = 163; -static int32_t fcoder_metacmd_ID_goto_first_jump_direct = 164; -static int32_t fcoder_metacmd_ID_newline_or_goto_position_direct = 165; -static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_direct = 166; -static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_sticky = 167; -static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_sticky = 168; -static int32_t fcoder_metacmd_ID_goto_next_jump_sticky = 169; -static int32_t fcoder_metacmd_ID_goto_prev_jump_sticky = 170; -static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_sticky = 171; -static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_sticky = 172; -static int32_t fcoder_metacmd_ID_goto_first_jump_sticky = 173; -static int32_t fcoder_metacmd_ID_goto_first_jump_same_panel_sticky = 174; -static int32_t fcoder_metacmd_ID_newline_or_goto_position_sticky = 175; -static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_sticky = 176; -static int32_t fcoder_metacmd_ID_view_jump_list_with_lister = 177; -static int32_t fcoder_metacmd_ID_copy = 178; -static int32_t fcoder_metacmd_ID_cut = 179; -static int32_t fcoder_metacmd_ID_paste = 180; -static int32_t fcoder_metacmd_ID_paste_next = 181; -static int32_t fcoder_metacmd_ID_paste_and_indent = 182; -static int32_t fcoder_metacmd_ID_paste_next_and_indent = 183; -static int32_t fcoder_metacmd_ID_execute_previous_cli = 184; -static int32_t fcoder_metacmd_ID_execute_any_cli = 185; -static int32_t fcoder_metacmd_ID_build_search = 186; -static int32_t fcoder_metacmd_ID_build_in_build_panel = 187; -static int32_t fcoder_metacmd_ID_close_build_panel = 188; -static int32_t fcoder_metacmd_ID_change_to_build_panel = 189; -static int32_t fcoder_metacmd_ID_close_all_code = 190; -static int32_t fcoder_metacmd_ID_open_all_code = 191; -static int32_t fcoder_metacmd_ID_open_all_code_recursive = 192; -static int32_t fcoder_metacmd_ID_load_project = 193; -static int32_t fcoder_metacmd_ID_project_fkey_command = 194; -static int32_t fcoder_metacmd_ID_project_go_to_root_directory = 195; -static int32_t fcoder_metacmd_ID_setup_new_project = 196; -static int32_t fcoder_metacmd_ID_setup_build_bat = 197; -static int32_t fcoder_metacmd_ID_setup_build_sh = 198; -static int32_t fcoder_metacmd_ID_setup_build_bat_and_sh = 199; -static int32_t fcoder_metacmd_ID_project_command_lister = 200; -static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer = 201; -static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer_lister = 202; -static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers = 203; -static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers_lister = 204; -static int32_t fcoder_metacmd_ID_select_surrounding_scope = 205; -static int32_t fcoder_metacmd_ID_select_next_scope_absolute = 206; -static int32_t fcoder_metacmd_ID_select_prev_scope_absolute = 207; -static int32_t fcoder_metacmd_ID_place_in_scope = 208; -static int32_t fcoder_metacmd_ID_delete_current_scope = 209; -static int32_t fcoder_metacmd_ID_scope_absorb_down = 210; -static int32_t fcoder_metacmd_ID_open_long_braces = 211; -static int32_t fcoder_metacmd_ID_open_long_braces_semicolon = 212; -static int32_t fcoder_metacmd_ID_open_long_braces_break = 213; -static int32_t fcoder_metacmd_ID_if0_off = 214; -static int32_t fcoder_metacmd_ID_write_todo = 215; -static int32_t fcoder_metacmd_ID_write_hack = 216; -static int32_t fcoder_metacmd_ID_write_note = 217; -static int32_t fcoder_metacmd_ID_write_block = 218; -static int32_t fcoder_metacmd_ID_write_zero_struct = 219; -static int32_t fcoder_metacmd_ID_comment_line = 220; -static int32_t fcoder_metacmd_ID_uncomment_line = 221; -static int32_t fcoder_metacmd_ID_comment_line_toggle = 222; -static int32_t fcoder_metacmd_ID_snippet_lister = 223; -static int32_t fcoder_metacmd_ID_set_bindings_choose = 224; -static int32_t fcoder_metacmd_ID_set_bindings_default = 225; -static int32_t fcoder_metacmd_ID_set_bindings_mac_default = 226; -static int32_t fcoder_metacmd_ID_miblo_increment_basic = 227; -static int32_t fcoder_metacmd_ID_miblo_decrement_basic = 228; -static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp = 229; -static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp = 230; -static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp_minute = 231; -static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp_minute = 232; -static int32_t fcoder_metacmd_ID_kill_rect = 233; -static int32_t fcoder_metacmd_ID_multi_line_edit = 234; -static int32_t fcoder_metacmd_ID_rename_parameter = 235; -static int32_t fcoder_metacmd_ID_write_explicit_enum_values = 236; +static int32_t fcoder_metacmd_ID_parse_the_log = 1; +static int32_t fcoder_metacmd_ID_seek_beginning_of_textual_line = 2; +static int32_t fcoder_metacmd_ID_seek_end_of_textual_line = 3; +static int32_t fcoder_metacmd_ID_seek_beginning_of_line = 4; +static int32_t fcoder_metacmd_ID_seek_end_of_line = 5; +static int32_t fcoder_metacmd_ID_goto_beginning_of_file = 6; +static int32_t fcoder_metacmd_ID_goto_end_of_file = 7; +static int32_t fcoder_metacmd_ID_change_active_panel = 8; +static int32_t fcoder_metacmd_ID_change_active_panel_backwards = 9; +static int32_t fcoder_metacmd_ID_open_panel_vsplit = 10; +static int32_t fcoder_metacmd_ID_open_panel_hsplit = 11; +static int32_t fcoder_metacmd_ID_suppress_mouse = 12; +static int32_t fcoder_metacmd_ID_allow_mouse = 13; +static int32_t fcoder_metacmd_ID_toggle_mouse = 14; +static int32_t fcoder_metacmd_ID_set_mode_to_original = 15; +static int32_t fcoder_metacmd_ID_set_mode_to_notepad_like = 16; +static int32_t fcoder_metacmd_ID_toggle_highlight_line_at_cursor = 17; +static int32_t fcoder_metacmd_ID_toggle_highlight_enclosing_scopes = 18; +static int32_t fcoder_metacmd_ID_toggle_paren_matching_helper = 19; +static int32_t fcoder_metacmd_ID_toggle_fullscreen = 20; +static int32_t fcoder_metacmd_ID_remap_interactive = 21; +static int32_t fcoder_metacmd_ID_write_character = 22; +static int32_t fcoder_metacmd_ID_write_underscore = 23; +static int32_t fcoder_metacmd_ID_delete_char = 24; +static int32_t fcoder_metacmd_ID_backspace_char = 25; +static int32_t fcoder_metacmd_ID_set_mark = 26; +static int32_t fcoder_metacmd_ID_cursor_mark_swap = 27; +static int32_t fcoder_metacmd_ID_delete_range = 28; +static int32_t fcoder_metacmd_ID_backspace_alpha_numeric_boundary = 29; +static int32_t fcoder_metacmd_ID_delete_alpha_numeric_boundary = 30; +static int32_t fcoder_metacmd_ID_snipe_backward_whitespace_or_token_boundary = 31; +static int32_t fcoder_metacmd_ID_snipe_forward_whitespace_or_token_boundary = 32; +static int32_t fcoder_metacmd_ID_center_view = 33; +static int32_t fcoder_metacmd_ID_left_adjust_view = 34; +static int32_t fcoder_metacmd_ID_click_set_cursor_and_mark = 35; +static int32_t fcoder_metacmd_ID_click_set_cursor = 36; +static int32_t fcoder_metacmd_ID_click_set_cursor_if_lbutton = 37; +static int32_t fcoder_metacmd_ID_click_set_mark = 38; +static int32_t fcoder_metacmd_ID_mouse_wheel_scroll = 39; +static int32_t fcoder_metacmd_ID_move_up = 40; +static int32_t fcoder_metacmd_ID_move_down = 41; +static int32_t fcoder_metacmd_ID_move_up_10 = 42; +static int32_t fcoder_metacmd_ID_move_down_10 = 43; +static int32_t fcoder_metacmd_ID_move_down_textual = 44; +static int32_t fcoder_metacmd_ID_page_up = 45; +static int32_t fcoder_metacmd_ID_page_down = 46; +static int32_t fcoder_metacmd_ID_move_up_to_blank_line = 47; +static int32_t fcoder_metacmd_ID_move_down_to_blank_line = 48; +static int32_t fcoder_metacmd_ID_move_up_to_blank_line_skip_whitespace = 49; +static int32_t fcoder_metacmd_ID_move_down_to_blank_line_skip_whitespace = 50; +static int32_t fcoder_metacmd_ID_move_up_to_blank_line_end = 51; +static int32_t fcoder_metacmd_ID_move_down_to_blank_line_end = 52; +static int32_t fcoder_metacmd_ID_move_left = 53; +static int32_t fcoder_metacmd_ID_move_right = 54; +static int32_t fcoder_metacmd_ID_move_right_whitespace_boundary = 55; +static int32_t fcoder_metacmd_ID_move_left_whitespace_boundary = 56; +static int32_t fcoder_metacmd_ID_move_right_token_boundary = 57; +static int32_t fcoder_metacmd_ID_move_left_token_boundary = 58; +static int32_t fcoder_metacmd_ID_move_right_whitespace_or_token_boundary = 59; +static int32_t fcoder_metacmd_ID_move_left_whitespace_or_token_boundary = 60; +static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_boundary = 61; +static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_boundary = 62; +static int32_t fcoder_metacmd_ID_move_right_alpha_numeric_or_camel_boundary = 63; +static int32_t fcoder_metacmd_ID_move_left_alpha_numeric_or_camel_boundary = 64; +static int32_t fcoder_metacmd_ID_select_all = 65; +static int32_t fcoder_metacmd_ID_to_uppercase = 66; +static int32_t fcoder_metacmd_ID_to_lowercase = 67; +static int32_t fcoder_metacmd_ID_clean_all_lines = 68; +static int32_t fcoder_metacmd_ID_basic_change_active_panel = 69; +static int32_t fcoder_metacmd_ID_close_panel = 70; +static int32_t fcoder_metacmd_ID_show_scrollbar = 71; +static int32_t fcoder_metacmd_ID_hide_scrollbar = 72; +static int32_t fcoder_metacmd_ID_show_filebar = 73; +static int32_t fcoder_metacmd_ID_hide_filebar = 74; +static int32_t fcoder_metacmd_ID_toggle_filebar = 75; +static int32_t fcoder_metacmd_ID_toggle_line_wrap = 76; +static int32_t fcoder_metacmd_ID_toggle_fps_meter = 77; +static int32_t fcoder_metacmd_ID_increase_line_wrap = 78; +static int32_t fcoder_metacmd_ID_decrease_line_wrap = 79; +static int32_t fcoder_metacmd_ID_increase_face_size = 80; +static int32_t fcoder_metacmd_ID_decrease_face_size = 81; +static int32_t fcoder_metacmd_ID_mouse_wheel_change_face_size = 82; +static int32_t fcoder_metacmd_ID_toggle_virtual_whitespace = 83; +static int32_t fcoder_metacmd_ID_toggle_show_whitespace = 84; +static int32_t fcoder_metacmd_ID_toggle_line_numbers = 85; +static int32_t fcoder_metacmd_ID_eol_dosify = 86; +static int32_t fcoder_metacmd_ID_eol_nixify = 87; +static int32_t fcoder_metacmd_ID_exit_4coder = 88; +static int32_t fcoder_metacmd_ID_goto_line = 89; +static int32_t fcoder_metacmd_ID_search = 90; +static int32_t fcoder_metacmd_ID_reverse_search = 91; +static int32_t fcoder_metacmd_ID_search_identifier = 92; +static int32_t fcoder_metacmd_ID_reverse_search_identifier = 93; +static int32_t fcoder_metacmd_ID_replace_in_range = 94; +static int32_t fcoder_metacmd_ID_replace_in_buffer = 95; +static int32_t fcoder_metacmd_ID_replace_in_all_buffers = 96; +static int32_t fcoder_metacmd_ID_query_replace = 97; +static int32_t fcoder_metacmd_ID_query_replace_identifier = 98; +static int32_t fcoder_metacmd_ID_query_replace_selection = 99; +static int32_t fcoder_metacmd_ID_save_all_dirty_buffers = 100; +static int32_t fcoder_metacmd_ID_delete_file_query = 101; +static int32_t fcoder_metacmd_ID_save_to_query = 102; +static int32_t fcoder_metacmd_ID_rename_file_query = 103; +static int32_t fcoder_metacmd_ID_make_directory_query = 104; +static int32_t fcoder_metacmd_ID_move_line_up = 105; +static int32_t fcoder_metacmd_ID_move_line_down = 106; +static int32_t fcoder_metacmd_ID_duplicate_line = 107; +static int32_t fcoder_metacmd_ID_delete_line = 108; +static int32_t fcoder_metacmd_ID_open_file_in_quotes = 109; +static int32_t fcoder_metacmd_ID_open_matching_file_cpp = 110; +static int32_t fcoder_metacmd_ID_view_buffer_other_panel = 111; +static int32_t fcoder_metacmd_ID_swap_buffers_between_panels = 112; +static int32_t fcoder_metacmd_ID_kill_buffer = 113; +static int32_t fcoder_metacmd_ID_save = 114; +static int32_t fcoder_metacmd_ID_reopen = 115; +static int32_t fcoder_metacmd_ID_undo = 116; +static int32_t fcoder_metacmd_ID_redo = 117; +static int32_t fcoder_metacmd_ID_undo_all_buffers = 118; +static int32_t fcoder_metacmd_ID_redo_all_buffers = 119; +static int32_t fcoder_metacmd_ID_open_in_other = 120; +static int32_t fcoder_metacmd_ID_lister__quit = 121; +static int32_t fcoder_metacmd_ID_lister__activate = 122; +static int32_t fcoder_metacmd_ID_lister__write_character = 123; +static int32_t fcoder_metacmd_ID_lister__backspace_text_field = 124; +static int32_t fcoder_metacmd_ID_lister__move_up = 125; +static int32_t fcoder_metacmd_ID_lister__move_down = 126; +static int32_t fcoder_metacmd_ID_lister__wheel_scroll = 127; +static int32_t fcoder_metacmd_ID_lister__mouse_press = 128; +static int32_t fcoder_metacmd_ID_lister__mouse_release = 129; +static int32_t fcoder_metacmd_ID_lister__repaint = 130; +static int32_t fcoder_metacmd_ID_lister__write_character__default = 131; +static int32_t fcoder_metacmd_ID_lister__backspace_text_field__default = 132; +static int32_t fcoder_metacmd_ID_lister__move_up__default = 133; +static int32_t fcoder_metacmd_ID_lister__move_down__default = 134; +static int32_t fcoder_metacmd_ID_lister__write_character__file_path = 135; +static int32_t fcoder_metacmd_ID_lister__backspace_text_field__file_path = 136; +static int32_t fcoder_metacmd_ID_lister__write_character__fixed_list = 137; +static int32_t fcoder_metacmd_ID_interactive_switch_buffer = 138; +static int32_t fcoder_metacmd_ID_interactive_kill_buffer = 139; +static int32_t fcoder_metacmd_ID_interactive_open_or_new = 140; +static int32_t fcoder_metacmd_ID_interactive_new = 141; +static int32_t fcoder_metacmd_ID_interactive_open = 142; +static int32_t fcoder_metacmd_ID_command_lister = 143; +static int32_t fcoder_metacmd_ID_auto_tab_whole_file = 144; +static int32_t fcoder_metacmd_ID_auto_tab_line_at_cursor = 145; +static int32_t fcoder_metacmd_ID_auto_tab_range = 146; +static int32_t fcoder_metacmd_ID_write_and_auto_tab = 147; +static int32_t fcoder_metacmd_ID_list_all_locations = 148; +static int32_t fcoder_metacmd_ID_list_all_substring_locations = 149; +static int32_t fcoder_metacmd_ID_list_all_locations_case_insensitive = 150; +static int32_t fcoder_metacmd_ID_list_all_substring_locations_case_insensitive = 151; +static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier = 152; +static int32_t fcoder_metacmd_ID_list_all_locations_of_identifier_case_insensitive = 153; +static int32_t fcoder_metacmd_ID_list_all_locations_of_selection = 154; +static int32_t fcoder_metacmd_ID_list_all_locations_of_selection_case_insensitive = 155; +static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition = 156; +static int32_t fcoder_metacmd_ID_list_all_locations_of_type_definition_of_identifier = 157; +static int32_t fcoder_metacmd_ID_word_complete = 158; +static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_direct = 159; +static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_direct = 160; +static int32_t fcoder_metacmd_ID_goto_next_jump_direct = 161; +static int32_t fcoder_metacmd_ID_goto_prev_jump_direct = 162; +static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_direct = 163; +static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_direct = 164; +static int32_t fcoder_metacmd_ID_goto_first_jump_direct = 165; +static int32_t fcoder_metacmd_ID_newline_or_goto_position_direct = 166; +static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_direct = 167; +static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_sticky = 168; +static int32_t fcoder_metacmd_ID_goto_jump_at_cursor_same_panel_sticky = 169; +static int32_t fcoder_metacmd_ID_goto_next_jump_sticky = 170; +static int32_t fcoder_metacmd_ID_goto_prev_jump_sticky = 171; +static int32_t fcoder_metacmd_ID_goto_next_jump_no_skips_sticky = 172; +static int32_t fcoder_metacmd_ID_goto_prev_jump_no_skips_sticky = 173; +static int32_t fcoder_metacmd_ID_goto_first_jump_sticky = 174; +static int32_t fcoder_metacmd_ID_goto_first_jump_same_panel_sticky = 175; +static int32_t fcoder_metacmd_ID_newline_or_goto_position_sticky = 176; +static int32_t fcoder_metacmd_ID_newline_or_goto_position_same_panel_sticky = 177; +static int32_t fcoder_metacmd_ID_view_jump_list_with_lister = 178; +static int32_t fcoder_metacmd_ID_copy = 179; +static int32_t fcoder_metacmd_ID_cut = 180; +static int32_t fcoder_metacmd_ID_paste = 181; +static int32_t fcoder_metacmd_ID_paste_next = 182; +static int32_t fcoder_metacmd_ID_paste_and_indent = 183; +static int32_t fcoder_metacmd_ID_paste_next_and_indent = 184; +static int32_t fcoder_metacmd_ID_execute_previous_cli = 185; +static int32_t fcoder_metacmd_ID_execute_any_cli = 186; +static int32_t fcoder_metacmd_ID_build_search = 187; +static int32_t fcoder_metacmd_ID_build_in_build_panel = 188; +static int32_t fcoder_metacmd_ID_close_build_panel = 189; +static int32_t fcoder_metacmd_ID_change_to_build_panel = 190; +static int32_t fcoder_metacmd_ID_close_all_code = 191; +static int32_t fcoder_metacmd_ID_open_all_code = 192; +static int32_t fcoder_metacmd_ID_open_all_code_recursive = 193; +static int32_t fcoder_metacmd_ID_load_project = 194; +static int32_t fcoder_metacmd_ID_project_fkey_command = 195; +static int32_t fcoder_metacmd_ID_project_go_to_root_directory = 196; +static int32_t fcoder_metacmd_ID_setup_new_project = 197; +static int32_t fcoder_metacmd_ID_setup_build_bat = 198; +static int32_t fcoder_metacmd_ID_setup_build_sh = 199; +static int32_t fcoder_metacmd_ID_setup_build_bat_and_sh = 200; +static int32_t fcoder_metacmd_ID_project_command_lister = 201; +static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer = 202; +static int32_t fcoder_metacmd_ID_list_all_functions_current_buffer_lister = 203; +static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers = 204; +static int32_t fcoder_metacmd_ID_list_all_functions_all_buffers_lister = 205; +static int32_t fcoder_metacmd_ID_select_surrounding_scope = 206; +static int32_t fcoder_metacmd_ID_select_next_scope_absolute = 207; +static int32_t fcoder_metacmd_ID_select_prev_scope_absolute = 208; +static int32_t fcoder_metacmd_ID_place_in_scope = 209; +static int32_t fcoder_metacmd_ID_delete_current_scope = 210; +static int32_t fcoder_metacmd_ID_scope_absorb_down = 211; +static int32_t fcoder_metacmd_ID_open_long_braces = 212; +static int32_t fcoder_metacmd_ID_open_long_braces_semicolon = 213; +static int32_t fcoder_metacmd_ID_open_long_braces_break = 214; +static int32_t fcoder_metacmd_ID_if0_off = 215; +static int32_t fcoder_metacmd_ID_write_todo = 216; +static int32_t fcoder_metacmd_ID_write_hack = 217; +static int32_t fcoder_metacmd_ID_write_note = 218; +static int32_t fcoder_metacmd_ID_write_block = 219; +static int32_t fcoder_metacmd_ID_write_zero_struct = 220; +static int32_t fcoder_metacmd_ID_comment_line = 221; +static int32_t fcoder_metacmd_ID_uncomment_line = 222; +static int32_t fcoder_metacmd_ID_comment_line_toggle = 223; +static int32_t fcoder_metacmd_ID_snippet_lister = 224; +static int32_t fcoder_metacmd_ID_set_bindings_choose = 225; +static int32_t fcoder_metacmd_ID_set_bindings_default = 226; +static int32_t fcoder_metacmd_ID_set_bindings_mac_default = 227; +static int32_t fcoder_metacmd_ID_miblo_increment_basic = 228; +static int32_t fcoder_metacmd_ID_miblo_decrement_basic = 229; +static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp = 230; +static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp = 231; +static int32_t fcoder_metacmd_ID_miblo_increment_time_stamp_minute = 232; +static int32_t fcoder_metacmd_ID_miblo_decrement_time_stamp_minute = 233; +static int32_t fcoder_metacmd_ID_kill_rect = 234; +static int32_t fcoder_metacmd_ID_multi_line_edit = 235; +static int32_t fcoder_metacmd_ID_rename_parameter = 236; +static int32_t fcoder_metacmd_ID_write_explicit_enum_values = 237; #endif diff --git a/4coder_log.cpp b/4coder_log.cpp new file mode 100644 index 00000000..790ef8b1 --- /dev/null +++ b/4coder_log.cpp @@ -0,0 +1,54 @@ +/* + * Mr. 4th Dimention - Allen Webster + * + * 14.08.2019 + * + * Logging helpers. + * + */ + +// TOP + +#if !defined(FCODER_LOG_CPP) +#define FCODER_LOG_CPP + +internal String_Const_u8 +log_event(Arena *arena, String_Const_u8 event_name, String_Const_u8 src_name, i32 line_number, + i32 buffer, i32 view, i32 thread_id){ + List_String_Const_u8 list = {}; + string_list_pushf(arena, &list, "%.*s:%d: %.*s", + string_expand(src_name), line_number, string_expand(event_name)); + if (thread_id != 0){ + string_list_pushf(arena, &list, " [thread=%d]", thread_id); + } + if (buffer != 0){ + string_list_pushf(arena, &list, " [buffer=%d]", buffer); + } + if (view != 0){ + string_list_pushf(arena, &list, " [view=%d]", view); + } + string_list_push(arena, &list, string_u8_litexpr("\n")); + return(string_list_flatten(arena, list)); +} + +#define LogEventStr(log_call, arena, B, V, T, E) \ +Stmnt(Temp_Memory temp_LOG = begin_temp(arena); \ +String_Const_u8 M = log_event(arena, E, \ +string_u8_litexpr(__FILE__), \ +__LINE__, (B), (V), (T)); \ +log_call; \ +end_temp(temp_LOG); ) + +#define LogEventLit(log_call, arena, B, V, T, Elit) \ +LogEventStr(log_call, arena, (B), (V), (T), string_u8_litexpr(Elit)) + +#define LogEventF(log_call, arena, B, V, T, Ef, ...) \ +Stmnt(Temp_Memory temp_LOG_F = begin_temp(arena); \ +String_Const_u8 E = push_u8_stringf(arena, Ef, __VA_ARGS__); \ +LogEventStr(log_call, arena, B, V, T, E); \ +end_temp(temp_LOG_F); ) + +#endif + +// BOTTOM + diff --git a/4coder_log_parser.cpp b/4coder_log_parser.cpp new file mode 100644 index 00000000..9b522ac8 --- /dev/null +++ b/4coder_log_parser.cpp @@ -0,0 +1,417 @@ +/* + * Mr. 4th Dimention - Allen Webster + * + * 14.08.2019 + * + * Log parser. + * + */ + +// TOP + +internal u64 +log_parse__string_code(Log_Parse *parse, String_Const_u8 string, Log_String_Source string_source){ + u64 result = 0; + if (string.size > 0){ + Data data = make_data(string.str, string.size); + Table_Lookup lookup = table_lookup(&parse->string_to_id_table, data); + if (lookup.found_match){ + table_read(&parse->string_to_id_table, lookup, &result); + } + else{ + if (string_source == LogParse_ExternalString){ + data = push_data_copy(parse->arena, data); + } + result = parse->string_id_counter; + parse->string_id_counter += 1; + table_insert(&parse->string_to_id_table, data, result); + table_insert(&parse->id_to_string_table, result, data); + } + } + return(result); +} + +internal String_Const_u8 +log_parse__get_string(Log_Parse *parse, u64 code){ + Table_Lookup lookup = table_lookup(&parse->id_to_string_table, code); + String_Const_u8 result = {}; + if (lookup.found_match){ + Data val = {}; + table_read(&parse->id_to_string_table, lookup, &val); + result = SCu8(val.data, val.size); + } + return(result); +} + +internal Log_Event* +log_parse__event(Log_Parse *parse, + String_Const_u8 file_name, String_Const_u8 line_number, String_Const_u8 event_name){ + Log_Event *new_event = push_array(parse->arena, Log_Event, 1); + sll_queue_push(parse->first_event, parse->last_event, new_event); + parse->event_count += 1; + new_event->src_file_name = log_parse__string_code(parse, file_name, LogParse_ExternalString); + new_event->event_name = log_parse__string_code(parse, event_name, LogParse_ExternalString); + new_event->line_number = string_to_integer(line_number, 10); + new_event->event_number = parse->event_count; + return(new_event); +} + +internal Log_Tag* +log_parse__tag(Log_Parse *parse, Log_Event *event, String_Const_u8 tag_name, String_Const_u8 tag_value){ + Log_Tag *new_tag = push_array(parse->arena, Log_Tag, 1); + sll_queue_push(event->first_tag, event->last_tag, new_tag); + event->tag_count += 1; + new_tag->name = log_parse__string_code(parse, tag_name, LogParse_ExternalString); + if (tag_value.size == 0){ + new_tag->value.kind = LogTagKind_String; + new_tag->value.value = 0; + } + else{ + if (tag_value.str[0] == '"'){ + if (tag_value.size == 1){ + new_tag->value.kind = LogTagKind_String; + new_tag->value.value = 0; + } + else{ + tag_value = string_skip(tag_value, 1); + if (tag_value.str[tag_value.size - 1] == '"'){ + tag_value = string_chop(tag_value, 1); + } + String_Const_u8 escape = string_interpret_escapes(parse->arena, tag_value); + new_tag->value.kind = LogTagKind_String; + new_tag->value.value = log_parse__string_code(parse, escape, LogParse_PreAllocatedString); + } + } + else{ + new_tag->value.kind = LogTagKind_Integer; + b32 is_negative = false; + if (string_match(string_prefix(tag_value, 1), string_u8_litexpr("-"))){ + tag_value = string_skip(tag_value, 1); + is_negative = true; + } + if (string_match(string_prefix(tag_value, 2), string_u8_litexpr("0x"))){ + tag_value = string_skip(tag_value, 2); + new_tag->value.value_s = (i64)string_to_integer(tag_value, 16); + } + else{ + new_tag->value.value_s = (i64)string_to_integer(tag_value, 10); + } + if (is_negative){ + new_tag->value.value_s = -new_tag->value.value_s; + } + } + } + return(new_tag); +} + +internal Log_Event_List* +log_parse_get_list_tag_value(Log_Parse *parse, u64 name, Log_Tag_Value value){ + Log_Event_List *result = 0; + Log_Tag_Name_Value key = {name, value}; + Table_Lookup lookup = table_lookup(&parse->tag_value_to_event_list_table, make_data_struct(&key)); + if (lookup.found_match){ + u64 val = 0; + table_read(&parse->tag_value_to_event_list_table, lookup, &val); + result = (Log_Event_List*)IntAsPtr(val); + } + return(result); +} + +internal Log_Event_List* +log_parse__get_or_make_list_tag_value(Log_Parse *parse, Log_Tag *tag){ + Log_Event_List *result = 0; + Log_Tag_Name_Value key = {tag->name, tag->value}; + Data data_key = make_data_struct(&key); + Table_Lookup lookup = table_lookup(&parse->tag_value_to_event_list_table, data_key); + if (lookup.found_match){ + u64 val = 0; + table_read(&parse->tag_value_to_event_list_table, lookup, &val); + result = (Log_Event_List*)IntAsPtr(val); + } + else{ + result = push_array_zero(parse->arena, Log_Event_List, 1); + table_insert(&parse->tag_value_to_event_list_table, push_data_copy(parse->arena, data_key), + (u64)PtrAsInt(result)); + } + return(result); +} + +internal Log_Event_List* +log_parse__get_or_make_list_tag_name(Log_Parse *parse, Log_Tag *tag){ + Log_Event_List *result = 0; + Table_Lookup lookup = table_lookup(&parse->tag_name_to_event_list_table, tag->name); + if (lookup.found_match){ + u64 val = 0; + table_read(&parse->tag_name_to_event_list_table, lookup, &val); + result = (Log_Event_List*)IntAsPtr(val); + } + else{ + result = push_array_zero(parse->arena, Log_Event_List, 1); + table_insert(&parse->tag_name_to_event_list_table, tag->name, (u64)PtrAsInt(result)); + } + return(result); +} + +internal Log_Parse +make_log_parse(Arena *arena, String_Const_u8 source){ + Log_Parse parse = {}; + parse.arena = arena; + parse.string_id_counter = 1; + parse.string_to_id_table = make_table_Data_u64(arena->base_allocator, 500); + parse.id_to_string_table = make_table_u64_Data(arena->base_allocator, 500); + + for (;source.size > 0;){ + umem end_of_line = string_find_first(source, '\n'); + String_Const_u8 line = string_prefix(source, end_of_line); + line = string_skip_chop_whitespace(line); + source = string_skip(source, end_of_line + 1); + + String_Const_u8 src_file_name = {}; + String_Const_u8 src_line_number = {}; + b32 got_source_position = false; + + String_Const_u8 whole_line = line; + + { + umem colon1 = string_find_first(line, ':'); + src_file_name = string_prefix(line, colon1); + line = string_skip(line, colon1 + 1); + + umem colon2 = string_find_first(line, ':'); + src_line_number = string_prefix(line, colon2); + line = string_skip(line, colon2 + 1); + + if (string_is_integer(src_line_number, 10)){ + got_source_position = true; + } + } + + if (!got_source_position){ + line = whole_line; + + umem colon0 = string_find_first(line, ':'); + umem colon1 = string_find_first(line, colon0 + 1, ':'); + src_file_name = string_prefix(line, colon1); + line = string_skip(line, colon1 + 1); + + umem colon2 = string_find_first(line, ':'); + src_line_number = string_prefix(line, colon2); + line = string_skip(line, colon2 + 1); + + if (string_is_integer(src_line_number, 10)){ + got_source_position = true; + } + } + + if (got_source_position){ + umem bracket_open = string_find_first(line, '['); + String_Const_u8 event_name = string_prefix(line, bracket_open); + event_name = string_skip_chop_whitespace(event_name); + line = string_skip(line, bracket_open + 1); + + Log_Event *event = log_parse__event(&parse, + src_file_name, src_line_number, event_name); + + for (;line.size > 0;){ + umem bracket_close = string_find_first(line, ']'); + String_Const_u8 tag = string_prefix(line, bracket_close); + line = string_skip(line, bracket_close + 1); + bracket_open = string_find_first(line, '['); + line = string_skip(line, bracket_open + 1); + + umem equal_sign = string_find_first(tag, '='); + String_Const_u8 tag_name = string_prefix(tag, equal_sign); + String_Const_u8 tag_contents = string_skip(tag, equal_sign + 1); + + log_parse__tag(&parse, event, tag_name, tag_contents); + } + } + } + + //////////////////////////////// + + // NOTE(allen): fill acceleration structures + + parse.tag_value_to_event_list_table = make_table_Data_u64(arena->base_allocator, Thousand(1)); + parse.tag_name_to_event_list_table = make_table_u64_u64(arena->base_allocator, 100); + + for (Log_Event *event = parse.first_event; + event != 0; + event = event->next){ + for (Log_Tag *tag = event->first_tag; + tag != 0; + tag = tag->next){ + { + Log_Event_List *list = log_parse__get_or_make_list_tag_value(&parse, tag); + Log_Event_Ptr_Node *node = push_array(arena, Log_Event_Ptr_Node, 1); + sll_queue_push(list->first, list->last, node); + list->count += 1; + node->event = event; + } + { + Log_Event_List *list = log_parse__get_or_make_list_tag_name(&parse, tag); + Log_Event_Ptr_Node *node = push_array(arena, Log_Event_Ptr_Node, 1); + sll_queue_push(list->first, list->last, node); + list->count += 1; + node->event = event; + } + } + } + + for (Log_Event *event = parse.first_event; + event != 0; + event = event->next){ + i32 slot_count = event->tag_count*3/2; + event->tag_name_to_tag_ptr_table = make_table_u64_u64(arena->base_allocator, slot_count); + for (Log_Tag *tag = event->first_tag; + tag != 0; + tag = tag->next){ + table_insert(&event->tag_name_to_tag_ptr_table, tag->name, (u64)PtrAsInt(tag)); + } + } + + return(parse); +} + +//////////////////////////////// + +internal void +log_events_sort_by_tag__inner(Log_Event **events, Log_Sort_Key *keys, i32 first, i32 one_past_last){ + if (first + 1 < one_past_last){ + i32 pivot_index = one_past_last - 1; + Log_Sort_Key *pivot_key = keys + pivot_index; + i32 j = first; + for (i32 i = first; i < one_past_last; i += 1){ + Log_Sort_Key *key = keys + i; + b32 key_is_less_than_pivot_key = false; + if (key->value.kind < pivot_key->value.kind){ + key_is_less_than_pivot_key = true; + } + else if (key->value.kind == pivot_key->value.kind){ + if (key->value.value < pivot_key->value.value){ + key_is_less_than_pivot_key = true; + } + else if (key->value.value == pivot_key->value.value){ + if (key->number < pivot_key->number){ + key_is_less_than_pivot_key = true; + } + } + } + if (key_is_less_than_pivot_key){ + if (j < i){ + Swap(Log_Event*, events[i], events[j]); + Swap(Log_Sort_Key, keys[i], keys[j]); + } + j += 1; + } + } + Swap(Log_Event*, events[pivot_index], events[j]); + Swap(Log_Sort_Key, keys[pivot_index], keys[j]); + log_events_sort_by_tag__inner(events, keys, first, j); + log_events_sort_by_tag__inner(events, keys, j + 1, one_past_last); + } +} + +internal void +log_events_sort_by_tag(Arena *scratch, Log_Event_Ptr_Array array, u64 tag_name){ + Temp_Memory temp = begin_temp(scratch); + Log_Sort_Key *keys = push_array(scratch, Log_Sort_Key, array.count); + for (i32 i = 0; i < array.count; i += 1){ + Log_Event *event = array.events[i]; + Table_Lookup lookup = table_lookup(&event->tag_name_to_tag_ptr_table, tag_name); + if (lookup.found_match){ + u64 read_val = 0; + table_read(&event->tag_name_to_tag_ptr_table, lookup, &read_val); + Log_Tag *tag = (Log_Tag*)IntAsPtr(read_val); + keys[i].value = tag->value; + } + else{ + keys[i].value.kind = LogTagKind_Null; + keys[i].value.value = 0; + } + keys[i].number = event->event_number; + } + + log_events_sort_by_tag__inner(array.events, keys, 0, array.count); + + end_temp(temp); +} + +internal Log_Event_Ptr_Array +log_event_array_from_list(Arena *arena, Log_Event_List list){ + Log_Event_Ptr_Array array = {}; + array.count = list.count; + array.events = push_array(arena, Log_Event*, array.count); + i32 counter = 0; + for (Log_Event_Ptr_Node *node = list.first; + node != 0; + node = node->next){ + array.events[counter] = node->event; + counter += 1; + } + return(array); +} + +//////////////////////////////// + +CUSTOM_COMMAND_SIG(parse_the_log) +CUSTOM_DOC("Tests the log parser") +{ + Buffer_ID log_buffer = get_buffer_by_name(app, string_u8_litexpr("*log*"), AccessAll); + Scratch_Block scratch(app); + String_Const_u8 log_text = push_whole_buffer(app, scratch, log_buffer); + Log_Parse parse = make_log_parse(scratch, log_text); + + u64 buffer_code = log_parse__string_code(&parse, string_u8_litexpr("buffer"), + LogParse_ExternalString); + u64 thread_code = log_parse__string_code(&parse, string_u8_litexpr("thread"), + LogParse_ExternalString); + + Log_Tag_Value value = {}; + value.kind = LogTagKind_Integer; + value.value_s = 10; + Log_Event_List *list = log_parse_get_list_tag_value(&parse, buffer_code, value); + + Log_Event_Ptr_Array array = log_event_array_from_list(scratch, *list); + log_events_sort_by_tag(scratch, array, thread_code); + + for (i32 i = 0; i < array.count; i += 1){ + Log_Event *event = array.events[i]; + String_Const_u8 src_name = log_parse__get_string(&parse, event->src_file_name); + String_Const_u8 event_name = log_parse__get_string(&parse, event->event_name); + u64 line_number = event->line_number; + + List_String_Const_u8 line = {}; + string_list_pushf(scratch, &line, "%.*s:%llu: %.*s", + string_expand(src_name), line_number, string_expand(event_name)); + + for (Log_Tag *node = event->first_tag; + node != 0; + node = node->next){ + String_Const_u8 tag_name = log_parse__get_string(&parse, node->name); + + switch (node->value.kind){ + case LogTagKind_Integer: + { + string_list_pushf(scratch, &line, " [%.*s:%lld]", + string_expand(tag_name), node->value.value_s); + }break; + + case LogTagKind_String: + { + String_Const_u8 value = log_parse__get_string(&parse, node->value.value); + string_list_pushf(scratch, &line, " [%.*s:%.*s]", + string_expand(tag_name), string_expand(value)); + }break; + } + } + + string_list_push(scratch, &line, string_u8_litexpr("\n")); + + String_Const_u8 line_string = string_list_flatten(scratch, line); + print_message(app, line_string); + } +} + +// BOTTOM + diff --git a/4coder_log_parser.h b/4coder_log_parser.h new file mode 100644 index 00000000..b9557754 --- /dev/null +++ b/4coder_log_parser.h @@ -0,0 +1,106 @@ +/* + * Mr. 4th Dimention - Allen Webster + * + * 14.08.2019 + * + * Log parser. + * + */ + +// TOP + +#if !defined(FCODER_LOG_PARSER_H) +#define FCODER_LOG_PARSER_H + +typedef i64 Log_Tag_Kind; +enum{ + LogTagKind_Null, + LogTagKind_Integer, + LogTagKind_String, +}; + +typedef i32 Log_String_Source; +enum{ + LogParse_ExternalString, + LogParse_PreAllocatedString, +}; + +struct Log_Tag_Value{ + Log_Tag_Kind kind; + union{ + u64 value; + i64 value_s; + }; +}; + +struct Log_Sort_Key{ + Log_Tag_Value value; + i32 number; +}; + +struct Log_Tag_Name_Value{ + u64 name; + Log_Tag_Value value; +}; + +struct Log_Tag{ + Log_Tag *next; + u64 name; + Log_Tag_Value value; +}; + +struct Log_Event{ + Log_Event *next; + u64 src_file_name; + u64 event_name; + u64 line_number; + + Log_Tag *first_tag; + Log_Tag *last_tag; + i32 tag_count; + + i32 event_number; + + Table_u64_u64 tag_name_to_tag_ptr_table; +}; + +struct Log_Event_Ptr_Node{ + Log_Event_Ptr_Node *next; + Log_Event *event; +}; + +struct Log_Event_List{ + Log_Event_Ptr_Node *first; + Log_Event_Ptr_Node *last; + i32 count; +}; + +struct Log_Event_Ptr_Array{ + Log_Event **events; + i32 count; +}; + +struct Log_Tag_Value_Array{ + Log_Tag_Value *vals; + i32 count; +}; + +struct Log_Parse{ + Arena *arena; + + Log_Event *first_event; + Log_Event *last_event; + i32 event_count; + + u64 string_id_counter; + Table_Data_u64 string_to_id_table; + Table_u64_Data id_to_string_table; + + Table_Data_u64 tag_value_to_event_list_table; + Table_u64_u64 tag_name_to_event_list_table; +}; + +#endif + +// BOTTOM + diff --git a/4coder_project_commands.cpp b/4coder_project_commands.cpp index 2568fb2b..65d6dd5d 100644 --- a/4coder_project_commands.cpp +++ b/4coder_project_commands.cpp @@ -856,7 +856,7 @@ exec_project_command(Application_Links *app, Project_Command *command){ } block_zero_struct(&prev_location); - lock_jump_buffer(command->out); + lock_jump_buffer(app, command->out); } else{ // TODO(allen): fix the exec_system_command call so it can take a null buffer_id. diff --git a/4coder_system_command.cpp b/4coder_system_command.cpp index 60fb9383..9dd15a02 100644 --- a/4coder_system_command.cpp +++ b/4coder_system_command.cpp @@ -15,7 +15,7 @@ CUSTOM_DOC("If the command execute_any_cli has already been used, this will exec View_ID view = get_active_view(app, AccessAll); Buffer_Identifier id = buffer_identifier(out_buffer); exec_system_command(app, view, id, hot_directory, cmd, CLI_OverlapWithConflict|CLI_CursorAtEnd|CLI_SendEndSignal); - lock_jump_buffer(out_buffer); + lock_jump_buffer(app, out_buffer); } } diff --git a/4coder_table.cpp b/4coder_table.cpp index e7d81f7b..636272a2 100644 --- a/4coder_table.cpp +++ b/4coder_table.cpp @@ -85,9 +85,8 @@ table_lookup(Table_u64_u64 *table, u64 key){ } internal b32 -table_read(Table_u64_u64 *table, u64 key, u64 *val_out){ +table_read(Table_u64_u64 *table, Table_Lookup lookup, u64 *val_out){ b32 result = false; - Table_Lookup lookup = table_lookup(table, key); if (lookup.found_match){ *val_out = table->vals[lookup.index]; result = true; @@ -95,6 +94,12 @@ table_read(Table_u64_u64 *table, u64 key, u64 *val_out){ return(result); } +internal b32 +table_read(Table_u64_u64 *table, u64 key, u64 *val_out){ + Table_Lookup lookup = table_lookup(table, key); + return(table_read(table, lookup, val_out)); +} + internal void table_insert__inner(Table_u64_u64 *table, Table_Lookup lookup, u64 val){ Assert(lookup.found_empty_slot || lookup.found_erased_slot); @@ -371,9 +376,8 @@ table_lookup(Table_Data_u64 *table, Data key){ } internal b32 -table_read(Table_Data_u64 *table, Data key, u64 *val_out){ +table_read(Table_Data_u64 *table, Table_Lookup lookup, u64 *val_out){ b32 result = false; - Table_Lookup lookup = table_lookup(table, key); if (lookup.found_match){ *val_out = table->vals[lookup.index]; result = true; @@ -381,6 +385,12 @@ table_read(Table_Data_u64 *table, Data key, u64 *val_out){ return(result); } +internal b32 +table_read(Table_Data_u64 *table, Data key, u64 *val_out){ + Table_Lookup lookup = table_lookup(table, key); + return(table_read(table, lookup, val_out)); +} + internal void table_insert__inner(Table_Data_u64 *table, Table_Lookup lookup, Data key, u64 val){ Assert(lookup.found_empty_slot || lookup.found_erased_slot); @@ -515,9 +525,8 @@ table_lookup(Table_u64_Data *table, u64 key){ } internal b32 -table_read(Table_u64_Data *table, u64 key, Data *val_out){ +table_read(Table_u64_Data *table, Table_Lookup lookup, Data *val_out){ b32 result = false; - Table_Lookup lookup = table_lookup(table, key); if (lookup.found_match){ *val_out = table->vals[lookup.index]; result = true; @@ -525,6 +534,12 @@ table_read(Table_u64_Data *table, u64 key, Data *val_out){ return(result); } +internal b32 +table_read(Table_u64_Data *table, u64 key, Data *val_out){ + Table_Lookup lookup = table_lookup(table, key); + return(table_read(table, lookup, val_out)); +} + internal void table_insert__inner(Table_u64_Data *table, Table_Lookup lookup, Data val){ Assert(lookup.found_empty_slot || lookup.found_erased_slot); diff --git a/4ed.cpp b/4ed.cpp index f9bd7a60..654e2869 100644 --- a/4ed.cpp +++ b/4ed.cpp @@ -843,6 +843,12 @@ launch_command_via_keycode(System_Functions *system, Models *models, View *view, launch_command_via_event(system, models, view, event); } +internal Log_Function* +app_get_logger(System_Functions *system){ + log_init(system); + return(log_string); +} + App_Read_Command_Line_Sig(app_read_command_line){ i32 out_size = 0; Models *models = app_setup_memory(system, memory); @@ -958,7 +964,8 @@ App_Init_Sig(app_init){ // NOTE(allen): init baked in buffers File_Init init_files[] = { { string_u8_litinit("*messages*"), &models->message_buffer, true , }, - { string_u8_litinit("*scratch*"), &models->scratch_buffer, false, }, + { string_u8_litinit("*scratch*") , &models->scratch_buffer, false, }, + { string_u8_litinit("*log*") , &models->log_buffer , true , }, }; Heap *heap = &models->mem.heap; @@ -1483,6 +1490,9 @@ App_Step_Sig(app_step){ end_render_section(target, system); } + // NOTE(allen): flush the log + log_flush(models); + // NOTE(allen): set the app_result Application_Step_Result app_result = {}; app_result.mouse_cursor_type = APP_MOUSE_CURSOR_DEFAULT; @@ -1536,6 +1546,7 @@ App_Step_Sig(app_step){ extern "C" App_Get_Functions_Sig(app_get_functions){ App_Functions result = {}; + result.get_logger = app_get_logger; result.read_command_line = app_read_command_line; result.init = app_init; result.step = app_step; diff --git a/4ed.h b/4ed.h index 98087b50..d8ede733 100644 --- a/4ed.h +++ b/4ed.h @@ -111,8 +111,11 @@ Application_Step_Input *input) typedef App_Step_Sig(App_Step); +typedef b32 Log_Function(String_Const_u8 str); +typedef Log_Function *App_Get_Logger(System_Functions *system); struct App_Functions{ + App_Get_Logger *get_logger; App_Read_Command_Line *read_command_line; App_Init *init; App_Step *step; diff --git a/4ed_api_implementation.cpp b/4ed_api_implementation.cpp index d3827bd8..7bc4af2c 100644 --- a/4ed_api_implementation.cpp +++ b/4ed_api_implementation.cpp @@ -2704,6 +2704,17 @@ DOC(This call posts a string to the *messages* buffer.) return(result); } +API_EXPORT b32 +Log_String(Application_Links *app, String_Const_u8 str){ + return(log_string(str)); +} + +API_EXPORT i32 +Thread_Get_ID(Application_Links *app){ + Models *models = (Models*)app->cmd_context; + return(models->system->thread_get_id()); +} + API_EXPORT Face_ID Get_Largest_Face_ID(Application_Links *app) /* diff --git a/4ed_app_models.h b/4ed_app_models.h index 3fa1e8dd..1a7e40a0 100644 --- a/4ed_app_models.h +++ b/4ed_app_models.h @@ -91,6 +91,7 @@ struct Models{ Editing_File *message_buffer; Editing_File *scratch_buffer; + Editing_File *log_buffer; Hot_Directory hot_directory; diff --git a/4ed_app_target.cpp b/4ed_app_target.cpp index bef16c88..1b6cdc06 100644 --- a/4ed_app_target.cpp +++ b/4ed_app_target.cpp @@ -71,8 +71,11 @@ struct Mem_Options{ #include "4ed_edit.h" #include "4ed_text_layout.h" #include "4ed_font_set.h" +#include "4ed_log.h" #include "4ed_app_models.h" +#include "4ed_log.cpp" +#include "4coder_log.cpp" #include "4ed_coroutine.cpp" #include "4ed_mem.cpp" #include "4ed_ptr_check.cpp" diff --git a/4ed_file.cpp b/4ed_file.cpp index 60745332..8b5fa1de 100644 --- a/4ed_file.cpp +++ b/4ed_file.cpp @@ -196,6 +196,8 @@ save_file_to_name(System_Functions *system, Models *models, Editing_File *file, } file->attributes = new_attributes; } + LogEventF(log_string(M), scratch, file->id, 0, system->thread_get_id(), + "save file [last_write_time=0x%llx]", new_attributes.last_write_time); file_clear_dirty_flags(file); end_temp(temp); @@ -474,6 +476,16 @@ file_create_from_string(System_Functions *system, Models *models, Editing_File * } file->settings.is_initialized = true; + + { + Temp_Memory temp = begin_temp(scratch); + String_Const_u8 name = SCu8(file->unique_name.name_space, file->unique_name.name_size); + name = string_escape(scratch, name); + LogEventF(log_string(M), scratch, file->id, 0, system->thread_get_id(), + "init file [last_write_time=0x%llx] [name=\"%.*s\"]", + attributes.last_write_time, string_expand(name)); + end_temp(temp); + } } internal void diff --git a/4ed_log.cpp b/4ed_log.cpp new file mode 100644 index 00000000..be1f5959 --- /dev/null +++ b/4ed_log.cpp @@ -0,0 +1,60 @@ +/* + * Mr. 4th Dimention - Allen Webster + * + * 14.08.2019 + * + * Core logging implementation. + * + */ + +// TOP + +global Log global_log = {}; + +internal void +log_init(System_Functions *system){ + global_log.mutex = system->mutex_make(); + global_log.mutex_acquire = system->mutex_acquire; + global_log.mutex_release = system->mutex_release; + global_log.thread_get_id = system->thread_get_id; + global_log.arena = make_arena_system(system); +} + +internal b32 +log_string(String_Const_u8 str){ + b32 result = false; + i32 thread_id = global_log.thread_get_id(); + if (global_log.disabled_thread_id != thread_id){ + global_log.mutex_acquire(global_log.mutex); + string_list_push(&global_log.arena, &global_log.list, push_string_copy(&global_log.arena, str)); + global_log.mutex_release(global_log.mutex); + result = true; + } + return(result); +} + +internal void +output_file_append(Models *models, Editing_File *file, String_Const_u8 value); + +internal b32 +log_flush(Models *models){ + b32 result = false; + + global_log.mutex_acquire(global_log.mutex); + global_log.disabled_thread_id = global_log.thread_get_id(); + + if (global_log.list.total_size > 0){ + String_Const_u8 text = string_list_flatten(&global_log.arena, global_log.list); + output_file_append(models, models->log_buffer, text); + result = true; + } + linalloc_clear(&global_log.arena); + block_zero_struct(&global_log.list); + + global_log.disabled_thread_id = 0; + global_log.mutex_release(global_log.mutex); + + return(result); +} + +// BOTTOM diff --git a/4ed_log.h b/4ed_log.h new file mode 100644 index 00000000..4bf84439 --- /dev/null +++ b/4ed_log.h @@ -0,0 +1,27 @@ +/* + * Mr. 4th Dimention - Allen Webster + * + * 14.08.2019 + * + * Core logging structures. + * + */ + +// TOP + +#if !defined(FRED_LOG_H) +#define FRED_LOG_H + +struct Log{ + System_Mutex mutex; + Arena arena; + List_String_Const_u8 list; + volatile i32 disabled_thread_id; + System_Mutex_Acquire *mutex_acquire; + System_Mutex_Release *mutex_release; + System_Thread_Get_ID *thread_get_id; +}; + +#endif + +// BOTTOM \ No newline at end of file diff --git a/4ed_system.h b/4ed_system.h index c12c9b2b..309ca113 100644 --- a/4ed_system.h +++ b/4ed_system.h @@ -114,6 +114,9 @@ typedef Sys_Thread_Join_Sig(System_Thread_Join); #define Sys_Thread_Free_Sig(name) void name(System_Thread thread) typedef Sys_Thread_Free_Sig(System_Thread_Free); +#define Sys_Thread_Get_ID_Sig(name) i32 name(void) +typedef Sys_Thread_Get_ID_Sig(System_Thread_Get_ID); + #define Sys_Mutex_Make_Sig(name) System_Mutex name(void) typedef Sys_Mutex_Make_Sig(System_Mutex_Make); @@ -204,6 +207,7 @@ struct System_Functions{ System_Thread_Launch *thread_launch; System_Thread_Join *thread_join; System_Thread_Free *thread_free; + System_Thread_Get_ID *thread_get_id; System_Mutex_Make *mutex_make; System_Mutex_Acquire *mutex_acquire; System_Mutex_Release *mutex_release; diff --git a/4ed_working_set.cpp b/4ed_working_set.cpp index f0687fe4..c82a346d 100644 --- a/4ed_working_set.cpp +++ b/4ed_working_set.cpp @@ -27,6 +27,8 @@ file_change_notification_check(System_Functions *system, Working_Set *working_se if (attributes.last_write_time > file->attributes.last_write_time){ file_add_dirty_flag(file, DirtyState_UnloadedChanges); if (file->external_mod_node.next == 0){ + LogEventF(log_string(M), &working_set->arena, file->id, 0, system->thread_get_id(), + "external modification [last_write_time=0x%llx]", attributes.last_write_time); dll_insert_back(&working_set->has_external_mod_sentinel, &file->external_mod_node); system->signal_step(0); } diff --git a/platform_all/4ed_link_system_functions.cpp b/platform_all/4ed_link_system_functions.cpp index 1b7897e7..1d2e1849 100644 --- a/platform_all/4ed_link_system_functions.cpp +++ b/platform_all/4ed_link_system_functions.cpp @@ -43,6 +43,7 @@ link_system_code(void){ SYSLINK(thread_launch); SYSLINK(thread_join); SYSLINK(thread_free); + SYSLINK(thread_get_id); SYSLINK(mutex_make); SYSLINK(mutex_acquire); SYSLINK(mutex_release); diff --git a/platform_win32/win32_4ed.cpp b/platform_win32/win32_4ed.cpp index 88adb8fa..99090a60 100644 --- a/platform_win32/win32_4ed.cpp +++ b/platform_win32/win32_4ed.cpp @@ -32,8 +32,10 @@ # include "4coder_lib/4coder_heap.cpp" # include "4coder_base_types.cpp" +# include "4coder_stringf.cpp" # include "4coder_hash_functions.cpp" # include "4coder_table.cpp" +# include "4coder_log.cpp" # include "4coder_API/4coder_keycodes.h" # include "4coder_API/4coder_default_colors.h" @@ -51,8 +53,6 @@ #include #include "win32_gl.h" -# include "4coder_stringf.cpp" - #define GL_TEXTURE_MAX_LEVEL 0x813D ////////////////////////////// @@ -196,7 +196,7 @@ struct Win32_Vars{ CONDITION_VARIABLE thread_launch_cv; b32 waiting_for_launch; - u32 log_position; + Log_Function *log_string; }; //////////////////////////////// @@ -950,6 +950,12 @@ Sys_Thread_Free_Sig(system_thread_free){ } } +internal +Sys_Thread_Get_ID_Sig(system_thread_get_id){ + DWORD result = GetCurrentThreadId(); + return((i32)result); +} + internal Sys_Mutex_Make_Sig(system_mutex_make){ Win32_Object *object = win32_alloc_object(Win32ObjectKind_Mutex); @@ -1243,6 +1249,8 @@ win32_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam){ case WM_CLIPBOARDUPDATE: { win32vars.got_useful_event = true; + LogEventLit(win32vars.log_string(M), &shared_vars.scratch, 0, 0, system_thread_get_id(), + "new clipboard contents"); }break; case WM_CLOSE: @@ -1556,14 +1564,8 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS init_shared_vars(); - // - // Load Core Code - // load_app_code(); - - // - // Read Command Line - // + win32vars.log_string = app.get_logger(&sysfunc); read_command_line(&shared_vars.scratch, argc, argv); // @@ -1601,7 +1603,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS HGLRC window_opengl_context = 0; if (!win32_gl_create_window(&win32vars.window_handle, &window_opengl_context, window_style, window_rect)){ - //LOG("Window creation failed\n"); exit(1); } @@ -1612,7 +1613,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS // Misc System Initializations // - //LOG("Initializing clipboard\n"); if (!AddClipboardFormatListener(win32vars.window_handle)){ win32_output_error_string(ErrorString_UseLog); } @@ -1645,12 +1645,10 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS LARGE_INTEGER f; if (QueryPerformanceFrequency(&f)){ win32vars.count_per_usecond = (f32)f.QuadPart / 1000000.f; - //LOGF("Got performance frequency %f\n", win32vars.count_per_usecond); } else{ // NOTE(allen): Just guess. win32vars.count_per_usecond = 1.f; - //LOG("Did not get performance frequency, just guessing with 1.\n"); } Assert(win32vars.count_per_usecond > 0.f); @@ -1658,7 +1656,6 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS // App init // - //LOG("Initializing application variables\n"); { Temp_Memory temp = begin_temp(&shared_vars.scratch); String_Const_u8 curdir = sysfunc.get_current_path(&shared_vars.scratch);