1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00
Commit Graph

612 Commits

Author SHA1 Message Date
William Ting
885c4e68ce minor Makefile edit 2012-10-30 22:30:45 -05:00
William Ting
1b5d9df854 minor documentation reformat 2012-10-30 22:27:54 -05:00
muratayusuke
7b4a54ccc1 set permission 0755 to _j in install.sh 2012-10-30 21:22:27 -05:00
Daniel Hahler
251dd47387 Update install.md: Python 2.6 is supported again 2012-10-30 21:22:27 -05:00
William Ting
1a032a97b4 Fix #148, add documentation regarding PROMPT_COMMAND. Bump to v21.0.1 2012-10-30 21:19:04 -05:00
William Ting
5745c34c23 version numbering 2012-10-30 21:05:16 -05:00
William Ting
a2657d6fca Merge pull request #150 from blueyed/master
Make autojump work with Python 2.6 again: vendorize argparse.
2012-09-26 16:40:06 -07:00
Daniel Hahler
4382116b55 Vendorize argparse
This adds the argparse library [1] as autojump_argparse and imports it
via sys.path mangling in case argparse does not exist (Python 2.6 or
below without argparse installed).

This makes autojump effectively work with Python 2.6 again by default.

I have not verified license compatibility, but given the intention of
the (backport) project this is likely OK (it is licensed under the
Python license).

1: http://code.google.com/p/argparse/

Fixes issue #121.
2012-09-26 22:04:45 +02:00
William Ting
1ab78ae91c merging rc branch 2012-07-02 17:46:01 -10:00
William Ting
3acedf2ed8 Remove loading compinit module from autojump.zsh.
I've updated the documentation to notify end users to add compinit to their
~/.zshrc if they want tab completion.
2012-07-02 17:36:27 -10:00
William Ting
ca8763aa02 Fix #135. Autojump was failing for directories with - due to bad regex. 2012-06-28 18:52:00 -10:00
William Ting
5613562e8b Minor documentation updates. 2012-06-28 18:37:41 -10:00
William Ting
7d58446fed Minor documentation updates. 2012-06-27 09:15:04 -10:00
William Ting
164c2b15a7 Update documentation regarding ZSH tab completion. 2012-06-26 10:17:14 -10:00
William Ting
99ee524fcc Add ZSH tab completion fix to ChangeLog. 2012-06-23 14:47:23 -10:00
William Ting
c62a8923ae Add v21 release notes, minor documentation update. 2012-06-23 14:38:26 -10:00
William Ting
f41d0fb7b3 Remove database migration code support for v17 and older.
The migration code was never working to begin with. Users migrating from v17 or
older will be starting from an empty, new database.
2012-06-23 13:21:24 -10:00
William Ting
e96dc4c9d8 Fix #86: ZSH tab completion
Forces zsh to load compinit required for tab completion.
2012-06-23 10:20:27 -10:00
William Ting
1994d0bb13 Merge pull request #131 from marktran/master
change zsh fpath for homebrew
2012-06-19 19:29:32 -07:00
Mark Tran
3c439a278e _j is now installed to /usr/local/share/zsh/site-functions in the autojump homebrew formula 2012-06-19 18:49:36 -07:00
William Ting
b510aa6824 switch to semantic versioning 2012-06-16 13:57:40 -10:00
William Ting
f29876b202 Fix #130: Use temporary directory for unit tests. 2012-06-10 20:50:18 -10:00
William Ting
3a7f211fb6 Obey AUTOJUMP_KEEP_SYMLINKS when testing current directory against paths.
This is to make sure we don't jump into our current directory when the symlinks
option is enabled.
2012-06-04 08:06:25 -10:00
William Ting
05026ff54e break db load into smaller functions, load backup if opening primary db fails 2012-05-28 09:44:09 -10:00
William Ting
626fa8b080 version bump to v20-9 2012-05-28 09:24:04 -10:00
William Ting
b00e0e85e1 Fix #123, new installations were not initializing database properly.
Also added unit test coverage to check database initialization, saving, and
loading.  Unit tests also revealed that migration code was not working properly
(starts database from scratch instead of copying existing entries over).
2012-05-28 09:21:31 -10:00
William Ting
b3c3253e89 tweak release target to build docs and test first 2012-05-28 09:18:28 -10:00
William Ting
867be37543 remove tmp files created from unit tests 2012-05-27 13:35:47 -10:00
William Ting
183fa795d7 Update scripts to use version agnostic pattern matching and corresponding documentation. 2012-05-27 13:14:01 -10:00
William Ting
1b765ab8a6 Use zsh version agnostic approach regarding substring matching 2012-05-27 13:04:24 -10:00
William Ting
c2d72e442a remove references to jumpstat within manpages 2012-05-27 11:56:38 -10:00
William Ting
32566eb89d Implements #126. Options passed to j will now be parsed. -s short option for
--stat added, jumpstat alias removed.

Options passed to the `j` function will now be passed on autojump. As a result,
directories beginning with `-` are no longer supported.

A -s short alias for --stat is added. Instead of using jumpstat, use `j --stat`
or `j -s` instead.
2012-05-27 11:24:49 -10:00
William Ting
d194429782 Test zsh version before using appropriate regex test conditional.
As best I can tell, ZSH introduced the "=~" condition somewhere around 4.3.5 or
4.3.9. In either case, autojump will use =~ for versions higher than 4.3.5 and
  -pcre-match for older versions of ZSH.
2012-05-27 10:53:33 -10:00
William Ting
3f78b56bc7 Remove unnecessary code from install.sh.
In the past the installer would modify the user's ~/.bashrc and thus needed to
find the current user's name and home directory. However, the installer no
longer modifies user's ~/.bashrc and getent also outputs error messages for
Cygwin users.
2012-05-27 09:18:54 -10:00
William Ting
3fdc213149 Merge pull request #125 from KenMacD/zsh
Use -pcre-match in .zsh instead of =~.
2012-05-22 10:57:48 -07:00
Kenny MacDermid
ee1be0310b Use -pcre-match in .zsh instead of =~.
Before zsh 4.3.5 =~ was not supported. This results in the message
'autojump.zsh:18: condition expected: =~'.
2012-05-20 12:16:31 -03:00
William Ting
e62e720765 move config back to global space 2012-05-12 17:00:38 -10:00
William Ting
7123e23706 minor version bump to v20-6 2012-05-12 16:38:51 -10:00
William Ting
57053a76fa Add dev section to README.md and update makefile to reflect new section. 2012-05-12 16:38:09 -10:00
William Ting
f25d7ba996 add unit tests, run using: make test 2012-05-12 16:31:58 -10:00
William Ting
13e385a0ef reformat doc strings, move config into own function, add global variable for testing purposes 2012-05-12 16:31:37 -10:00
William Ting
79e644bd63 Add name(s) to AUTHORS 2012-05-12 03:22:41 -10:00
William Ting
009b01d94a tweak docs regarding minimum requirements 2012-05-08 09:18:43 -10:00
William Ting
e8118186e4 tweak documentation wording 2012-05-08 09:09:16 -10:00
William Ting
0818bf8164 Fix #110, autojump_ignore_case now working properly 2012-05-08 09:08:50 -10:00
William Ting
83e01c5251 tweak mailing list wording 2012-05-07 09:18:29 -10:00
William Ting
effe34924d Add Google Group information to documentation 2012-05-06 23:32:04 -10:00
Joel Schaerer
08a79c1113 Add the google group to the README
Not sure if this is correct, is there a source file I should update
instead?
2012-05-07 11:21:37 +02:00
William Ting
60a9c1c2f1 add purge option to clear database of missing entries 2012-05-06 20:50:40 -10:00
William Ting
a4cbff774b add copyright back into main file 2012-05-06 20:24:11 -10:00