summary refs log tree commit diff stats
path: root/examples/vim_file_chooser.vim
Commit message (Expand)AuthorAgeFilesLines
* Add ability to use ranger as file-chooser in gvimNg Oon-Ee2015-08-041-1/+5
* Should I dual ranger/cleric or wait for the THAC0 bonus? v1.7.0hut2015-04-141-1/+1
* moved "doc/examples" to "examples" for more visibilityhut2015-04-131-0/+36
* move examples to doc/exampleshut2013-03-091-17/+0
* Added version info to exampleshut2013-03-011-0/+2
* removed all trailing whitespaceshut2013-02-101-1/+1
* added the examples from the man page to the examples directoryhut2012-08-061-0/+15
/commit/util.h?h=1.5&id=439e15d09f6fa9271d3b49ef97194f0c80ebe161'>439e15d ^
586f663 ^

439e15d ^
586f663 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22



                                                              
                     
 




                                                    

                    


                                                                
                                                         

                                                                                
                                       

                                                                
/*
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */
#include <X11/Xlib.h>

extern void error(char *errstr, ...);
extern void *emallocz(unsigned int size);
extern void *emalloc(unsigned int size);
extern void *erealloc(void *ptr, unsigned int size);
extern char *estrdup(const char *str);
#define eassert(a) \
	do { \
		if(!(a)) \
			failed_assert(#a, __FILE__, __LINE__); \
	} while (0)
extern void failed_assert(char *a, char *file, int line);
extern void pipe_spawn(char *buf, unsigned int len, Display *dpy, char *argv[]);
extern void spawn(Display *dpy, char *argv[]);
extern void swap(void **p1, void **p2);
extern unsigned int tokenize(char **result, unsigned int reslen,
		char *str, char delim);