command-t 1.11.1 → 1.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.txt +5 -0
- data/doc/command-t.txt +5 -0
- data/ruby/command-t/controller.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab12c96152c696509b8840c92a7bd50f7f094f5b
|
4
|
+
data.tar.gz: a7d34d361e123326360140a6ed94a6b85aeac5d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef0c161da1c093f61185d3b8e09500340e16efc975c7e106730eb03cddde63ba6b79497a359e28b0f80fd34d9d1de09aabd08b52d0fd924ac7a56b62e1a29044
|
7
|
+
data.tar.gz: 645f8431083bc5458dd781ee88296d0b5b0b2d5f3c3a4038ac3ae63dc4d08aaccea1d1e7d4877022fd7112fafeecac5576260d59eb40a4fd5da708ce60ee787c
|
data/README.txt
CHANGED
@@ -1215,6 +1215,11 @@ POSSIBILITY OF SUCH DAMAGE.
|
|
1215
1215
|
|
1216
1216
|
HISTORY *command-t-history*
|
1217
1217
|
|
1218
|
+
1.11.2 (2 September 2014)
|
1219
|
+
|
1220
|
+
- fix error while using Command-T outside of an SCM repo (bug present since
|
1221
|
+
1.11.1)
|
1222
|
+
|
1218
1223
|
1.11.1 (29 August 2014)
|
1219
1224
|
|
1220
1225
|
- compatibility fixes with Ruby 1.8.6 (patch from Emily Strickland)
|
data/doc/command-t.txt
CHANGED
@@ -1215,6 +1215,11 @@ POSSIBILITY OF SUCH DAMAGE.
|
|
1215
1215
|
|
1216
1216
|
HISTORY *command-t-history*
|
1217
1217
|
|
1218
|
+
1.11.2 (2 September 2014)
|
1219
|
+
|
1220
|
+
- fix error while using Command-T outside of an SCM repo (bug present since
|
1221
|
+
1.11.1)
|
1222
|
+
|
1218
1223
|
1.11.1 (29 August 2014)
|
1219
1224
|
|
1220
1225
|
- compatibility fixes with Ruby 1.8.6 (patch from Emily Strickland)
|
@@ -56,9 +56,9 @@ module CommandT
|
|
56
56
|
@path = nearest_ancestor(VIM::current_file_dir, scm_markers)
|
57
57
|
when 'dir'
|
58
58
|
@path = nearest_ancestor(VIM::pwd, scm_markers)
|
59
|
-
else
|
60
|
-
@path = VIM::pwd
|
61
59
|
end
|
60
|
+
|
61
|
+
@path = VIM::pwd unless @path
|
62
62
|
end
|
63
63
|
|
64
64
|
@active_finder = file_finder
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: command-t
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
4
|
+
version: 1.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Greg Hurrell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Command-T provides a fast, intuitive mechanism for opening files with a
|