View | Details | Raw Unified
Collapse All | Expand All

(-) cream-0.29.orig/cream (-1 / +1 lines)
 Lines 1-4    Link Here 
#!/bin/sh
#!/bin/sh
gvim -u "\$VIMRUNTIME/cream/creamrc" "$@"
gvim -u "\$VIM/cream/creamrc" "$@"
(-) cream-0.29.orig/cream.desktop (-1 / +1 lines)
 Lines 12-16    Link Here 
MapNotify=false
MapNotify=false
Encoding=UTF-8
Encoding=UTF-8
X-Desktop-File-Install-Version=0.4
X-Desktop-File-Install-Version=0.4
Categories=Application;Development;X-Red-Hat-Base;
Categories=Application;Development;
(-) cream-0.29.orig/cream-lib.vim (-1 / +1 lines)
 Lines 472-478    Link Here 
	" program ctags exists
	" program ctags exists
	elseif a:property == "ctags"
	elseif a:property == "ctags"
		if executable("ctags") == 1 ||
		if executable("exuberant-ctags") == 1 ||
		\  executable("tags") == 1
		\  executable("tags") == 1
			return 1
			return 1
		endif
		endif
(-) cream-0.29.orig/creamrc (-7 / +10 lines)
 Lines 103-109    Link Here 
			""***
			""***
		else
		else
			let $CREAM = $VIMRUNTIME . "/cream/"
			let $CREAM = $VIM . "/cream/"
		endif
		endif
	endif
	endif
 Lines 222-233    Link Here 
			if has("win32")
			if has("win32")
				let quote = '"'
				let quote = '"'
				" change slashes to backslashes for system call
				let tmpdir = substitute(mydir, '/', '\', 'g')
			else
			else
				let quote = ''
				let quote = ''
				let tmpdir = mydir
			endif
			endif
			set noshellslash
			set noshellslash
			" change slashes to backslashes for system call
			let tmpdir = substitute(mydir, '/', '\', 'g')
			call system("mkdir " . quote . tmpdir . quote)
			call system("mkdir " . quote . tmpdir . quote)
			set shellslash
			set shellslash
 Lines 284-295    Link Here 
		if has("win32")
		if has("win32")
			let quote = '"'
			let quote = '"'
			" change slashes to backslashes for system call
			let tmpdir = substitute(mydir, '/', '\', 'g')
		else
		else
			let quote = ''
			let quote = ''
			let tmpdir = mydir
		endif
		endif
		set noshellslash
		set noshellslash
		" change slashes to backslashes for system call
		let tmpdir = substitute(mydir, '/', '\', 'g')
		call system("mkdir " . quote . tmpdir . quote)
		call system("mkdir " . quote . tmpdir . quote)
		set shellslash
		set shellslash
 Lines 324-335    Link Here 
			if has("win32")
			if has("win32")
				let quote = '"'
				let quote = '"'
				" change slashes to backslashes for system call
				let tmpdir = substitute(mydir, '/', '\', 'g')
			else
			else
				let quote = ''
				let quote = ''
				let tmpdir = mydir
			endif
			endif
			set noshellslash
			set noshellslash
			" change slashes to backslashes for system call
			let tmpdir = substitute(mydir, '/', '\', 'g')
			call system("mkdir " . quote . tmpdir . quote)
			call system("mkdir " . quote . tmpdir . quote)
			set shellslash
			set shellslash
(-) cream-0.29.orig/taglist.vim (-1 / +1 lines)
 Lines 97-103    Link Here 
" Location of the exuberant ctags tool
" Location of the exuberant ctags tool
if !exists('Tlist_Ctags_Cmd')
if !exists('Tlist_Ctags_Cmd')
    let Tlist_Ctags_Cmd = 'ctags'
    let Tlist_Ctags_Cmd = 'exuberant-ctags'
endif
endif
" Tag listing sort type - 'name' or 'order'
" Tag listing sort type - 'name' or 'order'