Commit Graph

3916 Commits

Author SHA1 Message Date
Corey Johnson
999a74ec2c Add $git.getStatus(path) 2012-11-02 15:35:21 -07:00
Corey Johnson
1c86843e7a Fixture file used for git specs 2012-11-02 15:35:21 -07:00
Corey Johnson
13be2ea607 💄 2012-11-02 15:35:21 -07:00
Kevin Sawicki
53a0d2a805 Update dylib id using install_name_tool 2012-11-02 15:33:39 -07:00
Kevin Sawicki
bb201f8e42 💄 2012-11-02 15:33:39 -07:00
Kevin Sawicki
a934c5502f Remove unneeded import 2012-11-02 15:33:39 -07:00
Kevin Sawicki
6618e6ac5f Use /tmp paths for non-repo specs 2012-11-02 15:33:39 -07:00
Kevin Sawicki
094b5a3604 💄 2012-11-02 15:33:39 -07:00
Kevin Sawicki
de1d4cf8ab Remove unneeded fixture repo files 2012-11-02 15:33:39 -07:00
Kevin Sawicki
7f0091b67e Use /tmp file for non-repo branch label spec 2012-11-02 15:33:39 -07:00
Kevin Sawicki
90126d1a9b 💄 2012-11-02 15:33:39 -07:00
Kevin Sawicki
8bfe7b770f 💄 2012-11-02 15:33:39 -07:00
Kevin Sawicki
46e3ec17be Use int instead of int* 2012-11-02 15:33:38 -07:00
Kevin Sawicki
8195206d04 Check that pointer 2012-11-02 15:33:38 -07:00
Kevin Sawicki
f5db2b63d8 Add specs for Git.isIgnored 2012-11-02 15:33:38 -07:00
Kevin Sawicki
a9baf54707 Update git specs for latest libgit2 build 2012-11-02 15:33:38 -07:00
Kevin Sawicki
c24952231e Lighten ignored color 2012-11-02 15:33:38 -07:00
Kevin Sawicki
54814e5f1a Upgrade to development branch build of libgit2 2012-11-02 15:33:38 -07:00
Kevin Sawicki
20c69118ff Decorate ignored files/folders in tree-view 2012-11-02 15:33:38 -07:00
Kevin Sawicki
2e8f6b926c Add libgit2 headers to gypi file 2012-11-02 15:33:37 -07:00
Kevin Sawicki
9ec1a2c406 💄 2012-11-02 15:33:37 -07:00
Kevin Sawicki
28db13dbc1 Add specs for status bar branch label 2012-11-02 15:33:37 -07:00
Kevin Sawicki
8e8ab4ff94 Add getPath helper 2012-11-02 15:33:37 -07:00
Kevin Sawicki
cbba58c30e 💄 2012-11-02 15:33:37 -07:00
Kevin Sawicki
b029bacc03 Add initial git specs 2012-11-02 15:33:37 -07:00
Kevin Sawicki
1609fd61ec Set text before showing 2012-11-02 15:33:37 -07:00
Kevin Sawicki
8d623f99fb Update branch text from subscribeToBuffer 2012-11-02 15:33:37 -07:00
Kevin Sawicki
34bf39e364 Take char* path in constructor 2012-11-02 15:33:07 -07:00
Kevin Sawicki
a3ef53f8e6 Return repository for all paths 2012-11-02 15:33:07 -07:00
Kevin Sawicki
4c80b1e4ef 💄 2012-11-02 15:33:07 -07:00
Kevin Sawicki
b2b00a7b39 Update branch text on save 2012-11-02 15:33:07 -07:00
Kevin Sawicki
e4fb12a398 Add octicon to branch label 2012-11-02 15:31:11 -07:00
Kevin Sawicki
88cdff9d26 Return full HEAD when unshortened 2012-11-02 15:31:11 -07:00
Kevin Sawicki
d66315dd21 Abbreviate SHA-1s when HEAD is detached 2012-11-02 15:31:10 -07:00
Kevin Sawicki
8831c2a2dc Return SHA-1 when HEAD is detached 2012-11-02 15:31:10 -07:00
Kevin Sawicki
14302c491d Show current branch in status bar 2012-11-02 15:31:10 -07:00
Kevin Sawicki
c425b58093 Spec out more $git methods 2012-11-02 15:30:06 -07:00
Kevin Sawicki
1b42bd9662 Add $git.isRepository 2012-11-02 15:30:06 -07:00
Kevin Sawicki
55063d61ec Add libgit2 to libraries 2012-11-02 15:30:06 -07:00
Kevin Sawicki
17c3621853 Add native Git v8 extension 2012-11-02 15:30:06 -07:00
Kevin Sawicki
6eda70c56c Add libgit2 2012-11-02 15:30:06 -07:00
Nathan Sobo
3fbf5653c4 Update the status bar asynchronously on cursor move / buffer change
This keeps it out of the synchronous path from pressing a key to seeing it inserted on screen.
2012-11-02 15:46:33 -06:00
Nathan Sobo
9bca73816c Only insert in the benchmark. Keeps it pure (but the line gets long) 2012-11-02 15:43:05 -06:00
Nathan Sobo
adbcb9f49e Only consider BindingSets with a binding for first keystroke of event
The keymap was slow because it would find the binding sets with matching selectors for every ancestor of every keydown event. The problem was, it was considering a lot of binding sets that didn't even have a binding for the event in question. Now we index all binding sets on what bindings they contain, and filter them by that first. Rejecting an event that has no bindings is almost instantaneous now.
2012-11-02 14:13:03 -06:00
Nathan Sobo
2c211ba504 Remove ability to associate a binding set with a function
This was cool, but it's really hard to optimize the keymap with this feature because we never know if a keystroke will match against a binding set with a function, which will force us to always consider this binding set against every key event.
2012-11-02 13:39:21 -06:00
Nathan Sobo
0c3498d29f Cleanup/optimize Keymap#keystrokeStringForEvent 2012-11-02 13:25:33 -06:00
Nathan Sobo
eebd312af9 Add Keymap benchmark for handling an event with no binding 2012-11-02 13:23:45 -06:00
Nathan Sobo
045cdda41d Fix cursor line highlight style 2012-11-02 12:16:03 -06:00
Nathan Sobo
4539977800 I'm worried overflow:hidden on lines is screwing rendering up
It's hard to reproduce, so I'm going to disable it and see if I see any more artifacts.
2012-11-02 12:12:02 -06:00
Corey Johnson
3f2f067fa7 bundles directory no longer used 2012-11-01 17:52:34 -07:00