Don't indent items to prompt width by default

This commit is contained in:
speedie 2023-06-09 14:00:12 +02:00
parent b37de0b2e0
commit 965043e5e6
3 changed files with 3 additions and 3 deletions

View file

@ -118,7 +118,7 @@ spmenu.lineheight: 1
spmenu.lines: 0
spmenu.columns: 10
spmenu.preselected: 0
spmenu.indentitems: 1
spmenu.indentitems: 0
!! History
spmenu.maxhist: 64

View file

@ -179,7 +179,7 @@ spmenu = {
line = ( { height = 1; // Height of each line (px)
lines = 0; // Number of lines (number)
columns = 10; // Number of columns (number)
indentitems = 1; // Indent items to prompt width (0/1)
indentitems = 0; // Indent items to prompt width (0/1)
} );
/* History options */

View file

@ -101,7 +101,7 @@ static int maxhist = 64; /* Max number of history entries */
static int histdup = 0; /* If 1, record repeated histories */
/* Prompt options */
static int indentitems = 1; /* Indent items to prompt width? (0/1) */
static int indentitems = 0; /* Indent items to prompt width? (0/1) */
/* Hide options */
static int hideinput = 0; /* Hide input (0/1) */