2017-11-08 18:24:30 +00:00
|
|
|
// Command Mapping
|
2020-01-19 21:30:28 +00:00
|
|
|
// "" - Leave the bindings unaltered.
|
2017-11-08 18:24:30 +00:00
|
|
|
// "choose" - Ask 4coder to choose based on platform.
|
|
|
|
// "default" - Use the default keybindings 4coder has always had.
|
|
|
|
// "mac-default" - Use keybindings similar to those found in other Mac applications.
|
2020-01-19 18:30:37 +00:00
|
|
|
mapping = "choose";
|
2017-11-08 18:24:30 +00:00
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
// MODE
|
|
|
|
// "4coder" - The default 4coder mode that has been around since the beginning of time (2015)
|
|
|
|
// "notepad-like" - Single "thin" cursor and highlight ranges like in notepad, sublime, notepad++, etc
|
2018-10-07 21:50:17 +00:00
|
|
|
mode = "4coder";
|
2018-09-30 12:14:47 +00:00
|
|
|
|
2018-05-28 05:30:31 +00:00
|
|
|
// UI
|
|
|
|
use_scroll_bars = false;
|
|
|
|
use_file_bars = true;
|
2019-10-21 02:02:58 +00:00
|
|
|
use_error_highlight = true;
|
|
|
|
use_jump_highlight = true;
|
2018-09-30 12:14:47 +00:00
|
|
|
use_scope_highlight = true;
|
|
|
|
use_paren_helper = true;
|
|
|
|
use_comment_keywords = true;
|
2019-10-21 02:02:58 +00:00
|
|
|
lister_whole_word_backspace_when_modified = false;
|
|
|
|
show_line_number_margins = false;
|
2018-05-28 05:30:31 +00:00
|
|
|
|
2017-06-23 00:01:43 +00:00
|
|
|
// Code Wrapping
|
2020-01-17 03:58:24 +00:00
|
|
|
treat_as_code = ".cpp.c.hpp.h.cc.cs.java.rs.glsl.m.mm";
|
2018-06-08 22:51:36 +00:00
|
|
|
enable_virtual_whitespace = true;
|
2020-02-08 00:50:35 +00:00
|
|
|
virtual_whitespace_regular_indent = 4;
|
2017-06-23 00:01:43 +00:00
|
|
|
enable_code_wrapping = true;
|
|
|
|
|
|
|
|
// This only applies to code files in code-wrapping mode.
|
|
|
|
// Plain text and code files without virtual-whitespace will not be effected.
|
|
|
|
automatically_indent_text_on_save = true;
|
|
|
|
|
|
|
|
// When set to true, all unsaved changes will be saved on a build.
|
|
|
|
automatically_save_changes_on_build = true;
|
|
|
|
|
2018-05-28 05:30:31 +00:00
|
|
|
// Load project on startup
|
|
|
|
automatically_load_project = false;
|
|
|
|
|
|
|
|
// Indentation
|
|
|
|
indent_with_tabs = false;
|
|
|
|
indent_width = 4;
|
|
|
|
|
2017-06-23 00:01:43 +00:00
|
|
|
// Theme
|
|
|
|
default_theme_name = "4coder";
|
2018-09-25 08:41:49 +00:00
|
|
|
highlight_line_at_cursor = true;
|
2018-05-28 18:15:56 +00:00
|
|
|
|
|
|
|
// Font
|
2019-07-27 01:40:31 +00:00
|
|
|
default_font_name = "liberation-mono.ttf";
|
2018-05-28 18:15:56 +00:00
|
|
|
default_font_size = 16;
|
|
|
|
default_font_hinting = false;
|
2017-06-23 00:01:43 +00:00
|
|
|
|
|
|
|
// User
|
|
|
|
user_name = "NAME";
|
|
|
|
|
|
|
|
// Keyboard AltGr setting
|
|
|
|
lalt_lctrl_is_altgr = false;
|
2017-11-09 18:30:24 +00:00
|
|
|
|
|
|
|
// Project setup configuration
|
|
|
|
default_compiler_bat = "cl";
|
|
|
|
default_flags_bat = "-FC -GR- -EHa- -nologo -Zi";
|
|
|
|
default_compiler_sh = "g++";
|
|
|
|
default_flags_sh = "-g";
|
|
|
|
|