Procházet zdrojové kódy

fixed broken forward cursor fix #17

prozessorkern před 5 roky
rodič
revize
e5bf8572c2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/shellmatta_utils.c

+ 1 - 1
src/shellmatta_utils.c

@@ -145,7 +145,7 @@ void utils_forwardCursor(shellmatta_instance_t *inst, uint32_t length)
     char   terminalCmd[16];
     size_t size;
 
-    length = SHELLMATTA_MAX (length, (inst->inputCount - inst->cursor));
+    length = SHELLMATTA_MIN (length, (inst->inputCount - inst->cursor));
     if (length > 0u)
     {
         terminalCmd[0]  = '\e';