Searched +refs:org +refs:expand +refs:file +refs:name (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.9.5/vim-53/runtime/
H A Dindent.vim1 " Vim support file to switch on loading indent files for file types
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
18 let s = expand("<amatch>")
26 for name in split(s, '\.')
27 exe 'runtime! indent/' . name . '.vim'
H A Dftplugin.vim1 " Vim support file to switch on loading plugins for file types
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
20 let s = expand("<amatch>")
30 for name in split(s, '\.')
31 exe 'runtime! ftplugin/' . name . '.vim ftplugin/' . name . '_*.vim ftplugin/' . name . '/*.vim'
H A Dscripts.vim1 " Vim support file to detect file types in scripts
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
6 " This file is called by an autocommand for every file that has just been
7 " loaded into a buffer. It checks if the type of file can be recognized by
8 " the file contents. The autocommand is in $VIMRUNTIME/filetype.vim.
16 " Load the user defined scripts file first
18 if exists("myscriptsfile") && filereadable(expand(myscriptsfile))
41 " Get the program name
[all...]
H A Dfiletype.vim1 " Vim support file to detect file types
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
21 \ exe "doau filetypedetect BufRead " . fnameescape(expand("<afile>:r"))
23 \ let s:name = expand("<afile>") |
24 \ let s:short = substitute(s:name, '\~$', '', '') |
25 \ if s:name != s:short && s:short != "" |
28 \ unlet! s:name s:short
30 \ if expand("<afil
[all...]
H A Dmenu.vim1 " Vim support file to define the default menus
4 " Maintainer: Bram Moolenaar <Bram@vim.org>
21 " Try to find a menu translation file for the current language.
31 " A language name must be at least two characters, don't accept "C"
38 " We always use a lowercase name.
48 " same menu file for them.
86 let g:menutrans_help_dialog = "Enter a command or word to find help on:\n\nPrepend i_ for Input mode commands (e.g.: i_CTRL-X)\nPrepend c_ for command-line editing commands (e.g.: c_<Del>)\nPrepend ' for an option name (e.g.: 'shiftwidth')"
110 an <silent> 10.340 &File.&Save<Tab>:w :if expand("%") == ""<Bar>browse confirm w<Bar>else<Bar>confirm w<Bar>endif<CR>
283 an 20.440.160 &Edit.F&ile\ Settings.Toggle\ &expand-tab<Tab>:set\ et! :set et! et?<CR>
318 let g:menutrans_fileformat_dialog = "Select format for writing the file"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/demos/
H A Dcatalog28 set selfdir [file normalize [file dirname [info script]]]
31 # USAGE: iw_demo_file <name>
33 # Returns the proper demo file name for a demo called <name>.
35 proc iw_demo_file {name} {
37 return [file join $selfdir $name]
41 # USAGE: iw_demo_manpage <name>
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dsynload.vim1 " Vim syntax support file
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
5 " This file sets up for syntax highlighting.
34 " clear syntax for :set syntax=OFF and any syntax name that doesn't exist
40 let s = expand("<amatch>")
52 " Load the syntax file(s). When there are several, separated by dots,
54 for name in split(s, '\.')
55 exe "runtime! syntax/" . name . ".vim syntax/" . name . "/*.vim"
69 " Source the user-specified syntax highlighting file
[all...]
/macosx-10.9.5/vim-53/runtime/autoload/
H A Dgzip.vim1 " Vim autoload file for editing compressed files.
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
10 let name = substitute(a:cmd, '\(\S*\).*', '\1', '')
11 if !exists("s:have_" . name)
12 let e = executable(name)
14 let r = system(name . " --version")
17 exe "let s:have_" . name . "=" . e
19 exe "return s:have_" . name
23 " the flags in the compressed file.
44 " After reading compressed file
[all...]
/macosx-10.9.5/vim-53/runtime/ftplugin/
H A Dgitcommit.vim2 " Language: git commit file
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
28 let b:git_dir = expand("%:p:h")
43 let args = args."\n".system("git diff --cached --name-only")
51 let name = tempname()
61 call system(git." diff --cached --no-color ".extra." > ".(exists("*shellescape") ? shellescape(name) : name))
62 exe "pedit ".(exists("*fnameescape") ? fnameescape(name) : name)
H A Dcucumber.vim3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
18 let b:cucumber_root = expand('%:p:h:s?.*[\/]\%(features\|stories\)\zs[\/].*??')
43 for file in split(glob(b:cucumber_root.'/**/*.rb'),"\n")
44 let lines = readfile(file)
50 let steps += [[file,num,type,matchstr(line,step_pattern)]]
59 while synIDattr(synID(a:lnum,c,1),'name') !~# '^$\|Region$'
96 let group = synIDattr(synID(line('.'),indent+1,1),'name')
H A Docaml.vim2 " Maintainer: David Baelde <firstname.name@ens-lyon.org>
6 " Vincent Aravantinos <firstname.name@imag.fr>
12 " 2006 May 01 - Added .annot support for file.whateverext (SZ)
38 \%+EReference\ to\ unbound\ regexp\ name\ %m,
177 if getline(a:l) =~ '^\s*end\>' && synIDattr(synID(a:l, indent(a:l)+1, 0), "name") != "ocamlKeyword"
187 if synIDattr(synID(a:l, indent(a:l)+1, 0), "name") == "ocamlComment"
208 " file (if any). If Vim is in visual mode, <mode> should be "visual" and the
227 " corresponding file inside;
228 " + if the user decides to change the name o
[all...]
H A Druby.vim5 " URL: http://vim-ruby.rubyforge.org
42 \ "synIDattr(synID(line('.'),col('.'),0),'name') =~ '" .
88 " current directory and the directory of the current file.
227 return synIDattr(synID(line('.'),col('.'),0),'name')
241 return stripped == '' ? expand("<cword>") : stripped
249 " http://www.vim.org/scripts/script.php?script_id=39
257 " 4. Ensure this file (ftplugin/ruby.vim) is installed.
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A DHeuristic.pm16 $u = uf_uristr("/etc/passwd"); # file:/etc/passwd
20 This module provides functions that expand strings into real absolute
36 scheme (http, ftp, etc.) is a URL rather than a local path. So don't name
38 valid file: URL's on those volumes for you, because it won't.
58 the domain name of your host ends with two letters, then it is taken
64 "ACME" is for some reason used as a placeholder for the host name in
72 involves host name lookups.
106 # Last bit of domain name. This may access the network.
120 'uk' => [qw(www.ACME.co.uk www.ACME.org.uk www.ACME.ac.uk)],
121 'au' => [qw(www.ACME.com.au www.ACME.org
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/lib/Log/
H A DLog4perl.pm47 #within the config file. It works in conjunction with
51 #config file
109 my $name = "$caller_pkg\::$key";
115 *{"$name"} = \$value;
241 sub init { # Read the config file
285 file => "STDERR",
309 if($logger->{file} =~ /^stderr$/i) {
313 } elsif($logger->{file} =~ /^stdout$/i) {
320 if($logger->{file} =~ s/^(:.*?)>/>/) {
323 $logger->{file}
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/
H A DLog4perl.pm47 #within the config file. It works in conjunction with
51 #config file
106 my $name = "$caller_pkg\::$key";
111 *{"$name"} = \$value;
235 sub init { # Read the config file
279 file => "STDERR",
302 if($logger->{file} =~ /^stderr$/i) {
305 } elsif($logger->{file} =~ /^stdout$/i) {
311 if($logger->{file} =~ s/^(:.*?)>/>/) {
314 $logger->{file}
[all...]
/macosx-10.9.5/emacs-92/emacs/etc/
H A DviperCard.tex5 % This file can be printed with 1 or 2 columns per page (see below).
13 % This file is part of GNU Emacs.
15 % This file is distributed in the hope that it will be useful,
23 % file provided the copyright notice and permission notices are
26 % Permission is granted to process this file through TeX and print the
30 % This file is intended to be processed by plain TeX (TeX82).
33 % This file can be used to produce it in any of three ways:
61 % email: gildea@stop.mail-abuse.org
331 \metax{exit current file}{:wq {\rm or} :q}
340 \metax{{\bf recover} after system crash}{:rec file}
[all...]
H A Drefcard.tex6 % This file can be printed with 1, 2, or 3 columns per page (see below).
20 % This file is part of GNU Emacs.
33 % along with GNU Emacs; see the file COPYING. If not, write to
37 % This file is intended to be processed by plain TeX (TeX82).
40 % This file can be used to produce it in any of three ways:
59 % Internet: gildea@stop.mail-abuse.org
212 % section - new major section. Argument is section name.
231 % \<...> - surrounds a variable name in a code example
245 % \key{description of key}{key-name}
246 % prints the description left-justified, and the key-name i
[all...]
/macosx-10.9.5/bash-92/bash-3.2/support/
H A Dtexi2html34 # the texi2html.init file
49 Karl Berry <karl\@freefriends.org>
58 $THISPROG = "texi2html $THISVERSION"; # program name and version
60 # The man page for this program is included at the end of this file and can be
89 # A copy of this file is pasted into the beginning of texi2html by
92 # Copy this file and make changes to it, if you like.
140 # -expand
141 # if set to "tex" (or, "info") expand @iftex and @tex (or, @ifinfo) sections
142 # else, neither expand @iftex, @tex, nor @ifinfo sections
144 $T2H_OPTIONS -> {expand}
[all...]
/macosx-10.9.5/CPANInternal-140/XML-Parser/
H A DParser.pm71 # exactly the right case as the type name or a
217 my $file = shift;
219 open(FILE, $file) or croak "Couldn't open $file:\n$!";
224 $self->{Base} = $file;
268 $cmsg .= "Switching to file-based external entity handler\n";
406 Custom styles can be provided by giving a full package name containing
433 This is an Expat option. This sets the protocol encoding name. It defaults
448 This is an Expat option. Normally, the parser will try to expand references
459 saw an end of file
[all...]
/macosx-10.9.5/vim-53/runtime/indent/
H A Druby.vim1 " Vim indent file
5 " URL: http://vim-ruby.rubyforge.org
12 " Only load this indent file when no other was loaded.
50 \ "synIDattr(synID(line('.'),col('.'),1),'name') =~ '".s:syng_strcom."'"
80 \ ' || (expand("<cword>") == "do"' .
100 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_strcom
105 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_string
110 return synIDattr(synID(a:lnum, a:col, 1), 'name') =~ s:syng_stringdoc
202 " Set up variables for restoring position in file. Could use v:lnum here.
267 " At the start of the file us
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/config/
H A Dtexinfo.tex11 % This texinfo.tex file is free software; you can redistribute it and/or
16 % This texinfo.tex file is distributed in the hope that it will be
22 % along with this texinfo.tex file; see the file COPYING. If not, write
32 % ftp://ftp.gnu.org/gnu/texinfo.tex
33 % (and all GNU mirrors, see http://www.gnu.org/order/ftp.html)
34 % ftp://texinfo.org/texinfo/texinfo.tex
35 % ftp://tug.org/tex/texinfo.tex
36 % (and all CTAN mirrors, see http://www.ctan.org),
42 % Texinfo has a small home page at http://texinfo.org/ an
[all...]
/macosx-10.9.5/uucp-11/uucp/
H A Dtexinfo.tex11 % This texinfo.tex file is free software; you can redistribute it and/or
16 % This texinfo.tex file is distributed in the hope that it will be
22 % along with this texinfo.tex file; see the file COPYING. If not, write
32 % ftp://ftp.gnu.org/gnu/texinfo.tex
33 % (and all GNU mirrors, see http://www.gnu.org/order/ftp.html)
34 % ftp://texinfo.org/tex/texinfo.tex
35 % ftp://us.ctan.org/macros/texinfo/texinfo.tex
36 % (and all CTAN mirrors, finger ctan@us.ctan.org for a list).
40 % Texinfo has a small home page at http://texinfo.org/
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/
H A DREADME66 * At a central location in your system (either in a configuration file
75 /tmp/my.log") and which format ("Write the date first, then the file
76 name and line number, and then the log message") they should be in.
87 severe errors to the log file. Open a second log file, turn on full
89 messages originating from there into the new log file". And all this is
90 possible by just changing the parameters in a configuration file, which
95 Perl commands or via a "log4j"-style configuration file.
97 Initialize via a configuration file
99 "Log::Log4perl". Use a configuration file lik
[all...]
/macosx-10.9.5/bash-92/bash-3.2/doc/
H A Dtexinfo.tex11 % This texinfo.tex file is free software; you can redistribute it and/or
16 % This texinfo.tex file is distributed in the hope that it will be
22 % along with this texinfo.tex file; see the file COPYING. If not, write
32 % ftp://ftp.gnu.org/gnu/texinfo/texinfo.tex
33 % (and all GNU mirrors, see http://www.gnu.org/order/ftp.html)
34 % ftp://tug.org/tex/texinfo.tex
35 % (and all CTAN mirrors, see http://www.ctan.org),
38 % The GNU Texinfo home page is http://www.gnu.org/software/texinfo.
43 % Send bug reports to bug-texinfo@gnu.org
[all...]
/macosx-10.9.5/bc-21/bc/doc/
H A Dtexinfo.tex11 % This texinfo.tex file is free software; you can redistribute it and/or
16 % This texinfo.tex file is distributed in the hope that it will be
22 % along with this texinfo.tex file; see the file COPYING. If not, write
32 % ftp://ftp.gnu.org/gnu/texinfo.tex
33 % (and all GNU mirrors, see http://www.gnu.org/order/ftp.html)
34 % ftp://texinfo.org/tex/texinfo.tex
35 % ftp://us.ctan.org/macros/texinfo/texinfo.tex
36 % (and all CTAN mirrors, finger ctan@us.ctan.org for a list).
40 % Texinfo has a small home page at http://texinfo.org/
[all...]

Completed in 213 milliseconds

12