config.h - gramscii - A simple editor for ASCII box-and-arrow charts
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
config.h (642B)
---
1 /* This is part of `gramscii`` -- see COPYING for details */
2 #ifndef __LOCAL_CONFIG_H__
3 #define __LOCAL_CONFIG_H__
4
5 /* Config options */
6
7 /** MARKERS -- the first character is the default one **/
8 /* markers for horizontal lines */
9 static char hlines[] = {"-~=#*@._ "};
10 /* markers for vertical lines */
11 static char vlines[] = {"|H#*@:;i "};
12 /* markers for corners */
13 static char corners[] = {"+'H#*@.\"`"};
14 /* markers for arrow start points */
15 static char st_marks[] = {"+o-|<>^v*"};
16 /* markers for arrow endpoints */
17 static char end_marks[] = {">+o-|<^v*"};
18
19 /** LONG_STEP (movements through uppercase HJKL) **/
20 #define LONG_STEP 5
21
22 #endif