File: global.c

package info (click to toggle)
wily 0.13.41-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,560 kB
  • ctags: 3,426
  • sloc: ansic: 25,364; perl: 580; makefile: 445; sh: 415; python: 30; exp: 17
file content (21 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "wily.h"

Bool 	show_dot_files = false;
Bool 	autoindent_enabled = true;

/* cwd for wily process */
Path		wilydir;

/* widget with most recent b1 click */
View *	last_selection;

/* "stop" characters for various text expansions.
 * heuristic guesses only.
 */
char *notfilename = 	"!\"#%&'()*;<=>?@`[\\]^{|}";
char *notinclude = 		"!#%&'()*;=?@`[\\]^{|}";
char *notdoubleclick=	"!\"#$%&'()*+,-./:;<=>?@`[\\]^{|}~";
char *notcommand=	"!\"#%&'()*;:=?@`[\\]^{}";
char *notaddress=		"!\"%&'()+;<=>?@`[]{|}";

char *whitespace = 		" \t\v\n";