Change worddelimiters

This commit is contained in:
speedie 2023-07-03 21:35:05 +02:00
parent b1c80607a4
commit f1b0ecd624
2 changed files with 2 additions and 2 deletions

View file

@ -173,7 +173,7 @@ spmenu = {
fuzzy = 1; // Enable fuzzy finding (0/1)
preselected = 0; // Preselect an item, 0 is the first item (number)
mark = 1; // Allow marking/selecting multiple items (0/1)
delimiters = " "; // Word delimiter, used to delete words (text)
delimiters = " /?\"&[]"; // Word delimiter, used to delete words (text)
listfile = "NULL"; // File to read entries from. If set to NULL standard input is read. This is read every time a key is pressed. (text)
} );

View file

@ -261,4 +261,4 @@ static int requirematch = 0; /* Require input text to match an it
static int incremental = 0; /* Print text every time a key is pressed (0/1) */
static int coloritems = 1; /* Color items (0/1) */
static int sgr = 1; /* Support SGR sequences (0/1) */
static char *worddelimiters = " "; /* Word delimiters used for keybinds that change words, Space is default. */
static char *worddelimiters = " /?\"&[]"; /* Word delimiters used for keybinds that change words, Space is default. */