소스 검색

Fix typo and spaces with adjustments from me.

Steve Ward 5 년 전
부모
커밋
91719e47d5
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      config.def.h

+ 5 - 5
config.def.h

@@ -3,13 +3,13 @@
  * Use "cat -v" to figure out favorite key combination.
  *
  * lines is the number of lines scrolled up or down.
- * If lines is negative, its the fraction of the terminal size.
+ * If lines is negative, it's the fraction of the terminal size.
  */
 
 struct rule rules[] = {
 	/* sequence     event        lines */
-	{"\033[5;2~",	SCROLL_UP,   -1},	/* [Shift] + [PageUP] */
-	{"\033[6;2~",	SCROLL_DOWN, -1},	/* [Shift] + [PageDown] */
-	{"\031",	SCROLL_UP,    1},	/* mouse wheel up */
-	{"\005",	SCROLL_DOWN,  1}	/* mouse wheel Down */
+	{"\033[5;2~",   SCROLL_UP,   -1},       /* [Shift] + [PageUP] */
+	{"\033[6;2~",   SCROLL_DOWN, -1},       /* [Shift] + [PageDown] */
+	{"\031",        SCROLL_UP,    1},       /* mouse wheel up */
+	{"\005",        SCROLL_DOWN,  1},       /* mouse wheel Down */
 };