command-t 1.5 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.txt +8 -4
- data/doc/command-t.txt +8 -4
- data/ruby/command-t/Makefile +30 -30
- data/ruby/command-t/ext.bundle +0 -0
- metadata +2 -2
- data/doc/tags +0 -54
data/README.txt
CHANGED
|
@@ -655,10 +655,10 @@ order):
|
|
|
655
655
|
Anthony Panozzo Mike Lundy Sung Pae
|
|
656
656
|
Daniel Hahler Nate Kane Thomas Pelletier
|
|
657
657
|
Felix Tjandrawibawa Nicholas Alpi Victor Hugo Borja
|
|
658
|
-
Gary Bernhardt Nadav Samet
|
|
659
|
-
Ivan Ukhov Noon Silk
|
|
660
|
-
Jeff Kreeftmeijer Paul Jolly
|
|
661
|
-
Lucas de Vries Rainux Luo
|
|
658
|
+
Gary Bernhardt Nadav Samet Vít Ondruch
|
|
659
|
+
Ivan Ukhov Noon Silk Woody Peterson
|
|
660
|
+
Jeff Kreeftmeijer Paul Jolly Yan Pritzker
|
|
661
|
+
Lucas de Vries Rainux Luo Zak Johnson
|
|
662
662
|
Marcus Brito Scott Bronson
|
|
663
663
|
Marian Schubert Seth Fowler
|
|
664
664
|
Matthew Todd Steven Moazami
|
|
@@ -764,6 +764,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
|
|
764
764
|
|
|
765
765
|
HISTORY *command-t-history*
|
|
766
766
|
|
|
767
|
+
1.5.1 (23 September 2013)
|
|
768
|
+
- exclude large benchmark fixture file from source exports (patch from Vít
|
|
769
|
+
Ondruch)
|
|
770
|
+
|
|
767
771
|
1.5 (18 September 2013)
|
|
768
772
|
- don't scan "pathological" filesystem structures (ie. circular or
|
|
769
773
|
self-referential symlinks; patch from Marcus Brito)
|
data/doc/command-t.txt
CHANGED
|
@@ -655,10 +655,10 @@ order):
|
|
|
655
655
|
Anthony Panozzo Mike Lundy Sung Pae
|
|
656
656
|
Daniel Hahler Nate Kane Thomas Pelletier
|
|
657
657
|
Felix Tjandrawibawa Nicholas Alpi Victor Hugo Borja
|
|
658
|
-
Gary Bernhardt Nadav Samet
|
|
659
|
-
Ivan Ukhov Noon Silk
|
|
660
|
-
Jeff Kreeftmeijer Paul Jolly
|
|
661
|
-
Lucas de Vries Rainux Luo
|
|
658
|
+
Gary Bernhardt Nadav Samet Vít Ondruch
|
|
659
|
+
Ivan Ukhov Noon Silk Woody Peterson
|
|
660
|
+
Jeff Kreeftmeijer Paul Jolly Yan Pritzker
|
|
661
|
+
Lucas de Vries Rainux Luo Zak Johnson
|
|
662
662
|
Marcus Brito Scott Bronson
|
|
663
663
|
Marian Schubert Seth Fowler
|
|
664
664
|
Matthew Todd Steven Moazami
|
|
@@ -764,6 +764,10 @@ POSSIBILITY OF SUCH DAMAGE.
|
|
|
764
764
|
|
|
765
765
|
HISTORY *command-t-history*
|
|
766
766
|
|
|
767
|
+
1.5.1 (23 September 2013)
|
|
768
|
+
- exclude large benchmark fixture file from source exports (patch from Vít
|
|
769
|
+
Ondruch)
|
|
770
|
+
|
|
767
771
|
1.5 (18 September 2013)
|
|
768
772
|
- don't scan "pathological" filesystem structures (ie. circular or
|
|
769
773
|
self-referential symlinks; patch from Marcus Brito)
|
data/ruby/command-t/Makefile
CHANGED
|
@@ -4,65 +4,65 @@ SHELL = /bin/sh
|
|
|
4
4
|
#### Start of system configuration section. ####
|
|
5
5
|
|
|
6
6
|
srcdir = .
|
|
7
|
-
topdir = /
|
|
7
|
+
topdir = /Users/greg/.multiruby/install/1.8.7-p334/lib/ruby/1.8/i686-darwin10.6.0
|
|
8
8
|
hdrdir = $(topdir)
|
|
9
9
|
VPATH = $(srcdir):$(topdir):$(hdrdir)
|
|
10
|
-
prefix = $(DESTDIR)/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr
|
|
11
10
|
exec_prefix = $(prefix)
|
|
12
|
-
|
|
11
|
+
prefix = $(DESTDIR)/Users/greg/.multiruby/install/1.8.7-p334
|
|
12
|
+
sharedstatedir = $(prefix)/com
|
|
13
|
+
mandir = $(datarootdir)/man
|
|
14
|
+
psdir = $(docdir)
|
|
15
|
+
oldincludedir = $(DESTDIR)/usr/include
|
|
16
|
+
localedir = $(datarootdir)/locale
|
|
17
|
+
bindir = $(exec_prefix)/bin
|
|
18
|
+
libexecdir = $(exec_prefix)/libexec
|
|
19
|
+
sitedir = $(libdir)/ruby/site_ruby
|
|
20
|
+
htmldir = $(docdir)
|
|
13
21
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
14
|
-
vendordir = $(libdir)/ruby/vendor_ruby
|
|
15
|
-
sitearchdir = $(sitelibdir)/$(sitearch)
|
|
16
22
|
includedir = $(prefix)/include
|
|
17
|
-
|
|
18
|
-
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
|
23
|
+
infodir = $(datarootdir)/info
|
|
19
24
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
20
|
-
|
|
25
|
+
sysconfdir = $(prefix)/etc
|
|
21
26
|
libdir = $(exec_prefix)/lib
|
|
27
|
+
sbindir = $(exec_prefix)/sbin
|
|
28
|
+
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
|
22
29
|
docdir = $(datarootdir)/doc/$(PACKAGE)
|
|
23
|
-
localedir = $(datarootdir)/locale
|
|
24
|
-
sitedir = $(DESTDIR)/Library/Ruby/Site
|
|
25
|
-
sitelibdir = $(sitedir)/$(ruby_version)
|
|
26
|
-
mandir = $(DESTDIR)/usr/share/man
|
|
27
30
|
dvidir = $(docdir)
|
|
28
|
-
|
|
31
|
+
vendordir = $(libdir)/ruby/vendor_ruby
|
|
32
|
+
datarootdir = $(prefix)/share
|
|
33
|
+
pdfdir = $(docdir)
|
|
34
|
+
archdir = $(rubylibdir)/$(arch)
|
|
35
|
+
sitearchdir = $(sitelibdir)/$(sitearch)
|
|
29
36
|
datadir = $(datarootdir)
|
|
30
|
-
sysconfdir = $(prefix)/etc
|
|
31
37
|
localstatedir = $(prefix)/var
|
|
32
|
-
|
|
33
|
-
infodir = $(DESTDIR)/usr/share/info
|
|
34
|
-
sbindir = $(exec_prefix)/sbin
|
|
35
|
-
psdir = $(docdir)
|
|
36
|
-
htmldir = $(docdir)
|
|
37
|
-
pdfdir = $(docdir)
|
|
38
|
-
bindir = $(exec_prefix)/bin
|
|
38
|
+
sitelibdir = $(sitedir)/$(ruby_version)
|
|
39
39
|
|
|
40
|
-
CC =
|
|
40
|
+
CC = gcc
|
|
41
41
|
LIBRUBY = $(LIBRUBY_SO)
|
|
42
42
|
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
|
43
43
|
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
|
44
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)
|
|
44
|
+
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
|
45
45
|
|
|
46
46
|
RUBY_EXTCONF_H =
|
|
47
|
-
CFLAGS = -fno-common -
|
|
47
|
+
CFLAGS = -fno-common -g -O2 -fno-common -pipe -fno-common $(cflags)
|
|
48
48
|
INCFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir)
|
|
49
49
|
DEFS =
|
|
50
50
|
CPPFLAGS = -DHAVE_RUBY_H -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE $(DEFS) $(cppflags)
|
|
51
51
|
CXXFLAGS = $(CFLAGS)
|
|
52
|
-
ldflags = -L.
|
|
52
|
+
ldflags = -L.
|
|
53
53
|
dldflags =
|
|
54
54
|
archflag =
|
|
55
55
|
DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
|
|
56
|
-
LDSHARED = cc -
|
|
56
|
+
LDSHARED = cc -dynamic -bundle -undefined suppress -flat_namespace
|
|
57
57
|
AR = ar
|
|
58
58
|
EXEEXT =
|
|
59
59
|
|
|
60
60
|
RUBY_INSTALL_NAME = ruby
|
|
61
61
|
RUBY_SO_NAME = ruby
|
|
62
|
-
arch =
|
|
63
|
-
sitearch =
|
|
62
|
+
arch = i686-darwin10.6.0
|
|
63
|
+
sitearch = i686-darwin10.6.0
|
|
64
64
|
ruby_version = 1.8
|
|
65
|
-
ruby = /
|
|
65
|
+
ruby = /Users/greg/.multiruby/install/1.8.7-p334/bin/ruby
|
|
66
66
|
RUBY = $(ruby)
|
|
67
67
|
RM = rm -f
|
|
68
68
|
MAKEDIRS = mkdir -p
|
|
@@ -86,7 +86,7 @@ extout =
|
|
|
86
86
|
extout_prefix =
|
|
87
87
|
target_prefix =
|
|
88
88
|
LOCAL_LIBS =
|
|
89
|
-
LIBS = $(LIBRUBYARG_SHARED) -
|
|
89
|
+
LIBS = $(LIBRUBYARG_SHARED) -ldl -lobjc
|
|
90
90
|
SRCS = ext.c match.c matcher.c
|
|
91
91
|
OBJS = ext.o match.o matcher.o
|
|
92
92
|
TARGET = ext
|
data/ruby/command-t/ext.bundle
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 5
|
|
8
|
-
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.5.1
|
|
9
10
|
platform: ruby
|
|
10
11
|
authors:
|
|
11
12
|
- Wincent Colaiuta
|
|
@@ -61,7 +62,6 @@ files:
|
|
|
61
62
|
- ruby/command-t/vim/window.rb
|
|
62
63
|
- ruby/command-t/vim.rb
|
|
63
64
|
- doc/command-t.txt
|
|
64
|
-
- doc/tags
|
|
65
65
|
- plugin/command-t.vim
|
|
66
66
|
has_rdoc: true
|
|
67
67
|
homepage: https://wincent.com/products/command-t
|
data/doc/tags
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
:CommandT command-t.txt /*:CommandT*
|
|
2
|
-
:CommandTBuffer command-t.txt /*:CommandTBuffer*
|
|
3
|
-
:CommandTFlush command-t.txt /*:CommandTFlush*
|
|
4
|
-
:CommandTJumps command-t.txt /*:CommandTJumps*
|
|
5
|
-
:CommandTTag command-t.txt /*:CommandTTag*
|
|
6
|
-
command-t command-t.txt /*command-t*
|
|
7
|
-
command-t-authors command-t.txt /*command-t-authors*
|
|
8
|
-
command-t-commands command-t.txt /*command-t-commands*
|
|
9
|
-
command-t-contents command-t.txt /*command-t-contents*
|
|
10
|
-
command-t-development command-t.txt /*command-t-development*
|
|
11
|
-
command-t-donations command-t.txt /*command-t-donations*
|
|
12
|
-
command-t-history command-t.txt /*command-t-history*
|
|
13
|
-
command-t-installation command-t.txt /*command-t-installation*
|
|
14
|
-
command-t-intro command-t.txt /*command-t-intro*
|
|
15
|
-
command-t-license command-t.txt /*command-t-license*
|
|
16
|
-
command-t-mappings command-t.txt /*command-t-mappings*
|
|
17
|
-
command-t-options command-t.txt /*command-t-options*
|
|
18
|
-
command-t-pathogen command-t.txt /*command-t-pathogen*
|
|
19
|
-
command-t-requirements command-t.txt /*command-t-requirements*
|
|
20
|
-
command-t-trouble-shooting command-t.txt /*command-t-trouble-shooting*
|
|
21
|
-
command-t-usage command-t.txt /*command-t-usage*
|
|
22
|
-
command-t-website command-t.txt /*command-t-website*
|
|
23
|
-
command-t-wildignore command-t.txt /*command-t-wildignore*
|
|
24
|
-
command-t.txt command-t.txt /*command-t.txt*
|
|
25
|
-
g:CommandTAcceptSelectionMap command-t.txt /*g:CommandTAcceptSelectionMap*
|
|
26
|
-
g:CommandTAcceptSelectionSplitMap command-t.txt /*g:CommandTAcceptSelectionSplitMap*
|
|
27
|
-
g:CommandTAcceptSelectionTabMap command-t.txt /*g:CommandTAcceptSelectionTabMap*
|
|
28
|
-
g:CommandTAcceptSelectionVSplitMap command-t.txt /*g:CommandTAcceptSelectionVSplitMap*
|
|
29
|
-
g:CommandTAlwaysShowDotFiles command-t.txt /*g:CommandTAlwaysShowDotFiles*
|
|
30
|
-
g:CommandTBackspaceMap command-t.txt /*g:CommandTBackspaceMap*
|
|
31
|
-
g:CommandTCancelMap command-t.txt /*g:CommandTCancelMap*
|
|
32
|
-
g:CommandTClearMap command-t.txt /*g:CommandTClearMap*
|
|
33
|
-
g:CommandTCursorEndMap command-t.txt /*g:CommandTCursorEndMap*
|
|
34
|
-
g:CommandTCursorLeftMap command-t.txt /*g:CommandTCursorLeftMap*
|
|
35
|
-
g:CommandTCursorRightMap command-t.txt /*g:CommandTCursorRightMap*
|
|
36
|
-
g:CommandTCursorStartMap command-t.txt /*g:CommandTCursorStartMap*
|
|
37
|
-
g:CommandTDeleteMap command-t.txt /*g:CommandTDeleteMap*
|
|
38
|
-
g:CommandTHighlightColor command-t.txt /*g:CommandTHighlightColor*
|
|
39
|
-
g:CommandTMatchWindowAtTop command-t.txt /*g:CommandTMatchWindowAtTop*
|
|
40
|
-
g:CommandTMatchWindowReverse command-t.txt /*g:CommandTMatchWindowReverse*
|
|
41
|
-
g:CommandTMaxCachedDirectories command-t.txt /*g:CommandTMaxCachedDirectories*
|
|
42
|
-
g:CommandTMaxDepth command-t.txt /*g:CommandTMaxDepth*
|
|
43
|
-
g:CommandTMaxFiles command-t.txt /*g:CommandTMaxFiles*
|
|
44
|
-
g:CommandTMaxHeight command-t.txt /*g:CommandTMaxHeight*
|
|
45
|
-
g:CommandTMinHeight command-t.txt /*g:CommandTMinHeight*
|
|
46
|
-
g:CommandTNeverShowDotFiles command-t.txt /*g:CommandTNeverShowDotFiles*
|
|
47
|
-
g:CommandTQuickfixMap command-t.txt /*g:CommandTQuickfixMap*
|
|
48
|
-
g:CommandTRefreshMap command-t.txt /*g:CommandTRefreshMap*
|
|
49
|
-
g:CommandTScanDotDirectories command-t.txt /*g:CommandTScanDotDirectories*
|
|
50
|
-
g:CommandTSelectNextMap command-t.txt /*g:CommandTSelectNextMap*
|
|
51
|
-
g:CommandTSelectPrevMap command-t.txt /*g:CommandTSelectPrevMap*
|
|
52
|
-
g:CommandTTagIncludeFilenames command-t.txt /*g:CommandTTagIncludeFilenames*
|
|
53
|
-
g:CommandTToggleFocusMap command-t.txt /*g:CommandTToggleFocusMap*
|
|
54
|
-
g:CommandTWildIgnore command-t.txt /*g:CommandTWildIgnore*
|