URI: 
       tChange default for highlight-search to false - ledit - Text editor (WIP)
  HTML git clone git://lumidify.org/ledit.git (fast, but not encrypted)
  HTML git clone https://lumidify.org/git/ledit.git (encrypted, but very slow)
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 626c8692fa7f3dadb3c83a7c5b68b129e9e04ad5
   DIR parent 4ee5ad27da617738b33a8e5e46aa75afcc2e54d0
  HTML Author: lumidify <nobody@lumidify.org>
       Date:   Thu,  5 Oct 2023 12:18:49 +0200
       
       Change default for highlight-search to false
       
       Diffstat:
         M keys_command.c                      |       2 ++
         M leditrc.5                           |       2 +-
         M leditrc.example                     |       2 +-
         M theme_config.h                      |       2 +-
       
       4 files changed, 5 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/keys_command.c b/keys_command.c
       t@@ -890,6 +890,8 @@ edit_nextsearch(ledit_view *view, char *key_text, size_t len, size_t lang_index)
        /* FIXME: the current "highlight_search" support is a bit weird and will probably conflict
           in some way if other support for visual mode (e.g. only search in selection) is added */
        /* FIXME: support visual mode, i.e. change selection to new place? */
       +/* FIXME: maybe have separate setting to allow highlighting search just when in visual
       +   mode (i.e. don't switch to visual mode automatically) */
        void
        search_next(ledit_view *view) {
                view_wipe_line_cursor_attrs(view, view->cur_line);
   DIR diff --git a/leditrc.5 b/leditrc.5
       t@@ -174,7 +174,7 @@ Whether entire words should be highlighted when searching or replacing with conf
        Note that the mode is automatically switched to visual when this is set and a word needs to be highlighted.
        This is a bit weird, but in order to keep everything a bit more consistent, selections are curently
        only allowed in visual mode.
       -Default: true
       +Default: false
        .It Ar extra-line-spacing
        Extra space between each line (in pixels).
        Note that this is very rudimentary at the moment.
   DIR diff --git a/leditrc.example b/leditrc.example
       t@@ -18,7 +18,7 @@ theme = {
                scrollbar-step = 20
                scrollbar-bg = CCCCCC
                scrollbar-fg = 000000
       -        highlight-search = true
       +        highlight-search = false
                extra-line-spacing = 0
        }
        
   DIR diff --git a/theme_config.h b/theme_config.h
       t@@ -47,7 +47,7 @@ static const char *SCROLLBAR_BG = "#CCCCCC";
        static const char *SCROLLBAR_FG = "#000000";
        /* whether to highlight entire words when searching/replacing */
        /* FIXME: this should maybe be in a separate "general config" section */
       -static const char *HIGHLIGHT_SEARCH = "true";
       +static const char *HIGHLIGHT_SEARCH = "false";
        
        /* extra space between lines (in pixels) */
        static const char *EXTRA_LINE_SPACING = "0";