Преглед на файлове

Allow more complex delimiters for word selections.

Thanks Alexander Rezinsky <alexrez@gmail.com>!
Christoph Lohmann преди 12 години
родител
ревизия
8e968739c3
променени са 2 файла, в които са добавени 11 реда и са изтрити 2 реда
  1. 8 1
      config.def.h
  2. 3 1
      st.c

+ 8 - 1
config.def.h

@@ -9,7 +9,14 @@ static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=fals
 static int borderpx = 2;
 static char shell[] = "/bin/sh";
 
-/* timeouts (in milliseconds) */
+/*
+ * word delimiter string
+ *
+ * More advanced example: " `'\"()[]{}"
+ */
+static char worddelimiters[] = " ";
+
+/* selection timeouts (in milliseconds) */
 static unsigned int doubleclicktimeout = 300;
 static unsigned int tripleclicktimeout = 600;
 

+ 3 - 1
st.c

@@ -707,8 +707,10 @@ selsnap(int mode, int *x, int *y, int direction) {
 				}
 			}
 
-			if(term.line[*y][*x + direction].c[0] == ' ')
+			if(strchr(worddelimiters,
+					term.line[*y][*x + direction].c[0])) {
 				break;
+			}
 
 			*x += direction;
 		}