You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2019/12/02 12:09:46 UTC

[GitHub] [mynewt-core] andrzej-kaczmarek commented on a change in pull request #2093: console history persistence

andrzej-kaczmarek commented on a change in pull request #2093: console history persistence
URL: https://github.com/apache/mynewt-core/pull/2093#discussion_r352560935
 
 

 ##########
 File path: sys/console/full/syscfg.yml
 ##########
 @@ -43,15 +43,31 @@ syscfg.defs:
         value: 256
     CONSOLE_HISTORY_SIZE:
         description: >
-            Number of lines to be stored in console history.
-            Set to "0" to disable console history.
+            This is no longer used.
+            Equivalent settings:
+                CONSOLE_HISTORY: ram
+                CONSOLE_HISTORY_RAM_HISTORY_SIZE: <n>   <- previous value of CONSOLE_HISTORY_SIZE
         value: 0
-    CONSOLE_MAX_PROMPT_LEN:
+        deprecated: 1
+    CONSOLE_HISTORY:
+        description: >
+            Select how console should handle command history.
+        value: none
+        choices:
+            - none  # no history support
+            - ram   # history kept in ram for current session only
+            - log   # history kept in log
+    CONSOLE_HISTORY_AUTO_SEARCH:
+        description: >
+            When set to 1 history is automatically searched for lines starting with already typed
+            text.
+        value: 0
+    CONSOLE_PROMPT_MAX_LEN:
         description: 'Maximum number of characters for prompt'
         value: 16
-    CONSOLE_STICKY_PROMPT:
+    CONSOLE_PROMPT_PERSIST:
 
 Review comment:
   `STICKY` was nicer :)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services