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

204 Commits

Author SHA1 Message Date
William Ting
201e079c07 merging blueyed's changes to reduce stat() calls 2012-12-18 11:55:30 -06:00
William Ting
12805b0f58 Merge pull request #170 from blueyed/gh-find_matches-named-args
Use named args when calling find_matches
2012-12-18 09:41:32 -08:00
William Ting
182400ae8c Reduce lag for using when using sshfs mounts caused by checking pwd. 2012-12-18 11:33:36 -06:00
Daniel Hahler
10a8a3f785 Avoid file stats in find_matches for fuzzy=True, too 2012-12-18 17:14:53 +01:00
Daniel Hahler
4bd574aaf9 Use named args when calling find_matches
This should make it clearer at first glance where True and False is
referring to.
2012-12-18 16:03:29 +01:00
Daniel Hahler
586ce0deee Skip current_dir in find_matches for fuzzy=False, too 2012-12-18 15:46:24 +01:00
Daniel Hahler
6d98cf886d Do not decode os.path.realpath / path
`path` is decoded already (coming from `db`) and this caused the
following error:

    Traceback (most recent call last):
      File "/home/user/.autojump/bin/autojump", line 460, in <module>
        if not shell_utility(): sys.exit(1)
      File "/home/user/.autojump/bin/autojump", line 429, in shell_utility
        results = find_matches(db, patterns, max_matches, False)
      File "/home/user/.autojump/bin/autojump", line 374, in find_matches
        if current_dir == decode(os.path.realpath(path)) :
      File "/home/user/.autojump/bin/autojump", line 277, in decode
        return text.decode(encoding, errors)
      File "/usr/lib/python2.7/encodings/utf_8.py", line 16, in decode
        return codecs.utf_8_decode(input, errors, True)
    UnicodeEncodeError: 'ascii' codec can't encode character u'\xb4' in
    position 52: ordinal not in range(128)
2012-12-18 11:52:57 +01:00
Daniel Hahler
0547e23411 Avoid calls to stat() in find_matches
Instead of stating every directory to check if its realpath is the
current directory, only do so for any potential matches.
2012-12-18 11:32:58 +01:00
William Ting
a99183bf8b Never jump to pwd, use next best option.
This regression bug was introduced when adding the KEEP_SYMLINKS option. The
current_dir was always set to '.' which would never match any database entries.
2012-12-17 12:35:33 -06:00
William Ting
f0e45478a7 Add jc function, jump to a subdirectory of the current working directory.
Closes #156.
2012-12-14 22:58:20 -06:00
William Ting
da69e15efb add shorthand shortcut -v for --version 2012-12-14 20:52:03 -06:00
JrCs
b829fd5a4a Fix PROMPT_COMMAND issues 2012-12-14 19:42:46 -06:00
William Ting
2c75c36229 only open files as utf-8 with Python 3.0+ 2012-11-23 23:26:09 -06:00
William Ting
024d550c8c Disable bash autocompletion, make it optional. Add relevant documentation. Closes #140. 2012-11-23 08:32:15 -06:00
William Ting
d0e0a990ce Set default encoding to UTF-8 when opening database file. Closes #162. 2012-11-22 17:19:59 -06:00
William Ting
50e6054e13 Version bump to v21.1.0, update relevant documentation. 2012-11-22 16:44:05 -06:00
William Ting
2554fc7ed4 refactor a few lines for legibility 2012-11-21 17:48:47 -06:00
William Ting
f46b541105 remove adding git version to autojump install 2012-11-01 04:25:42 -05:00
William Ting
ac1bfeb784 version bump to v21.0.3 2012-11-01 03:59:44 -05:00
William Ting
1b5d9df854 minor documentation reformat 2012-10-30 22:27:54 -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
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
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
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
b510aa6824 switch to semantic versioning 2012-06-16 13:57:40 -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
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
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
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
0818bf8164 Fix #110, autojump_ignore_case now working properly 2012-05-08 09:08:50 -10: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
William Ting
be82be31d5 fix env var settings 2012-05-06 19:51:09 -10:00
William Ting
9ad889a706 To prevent database decay, set the env var AUTOJUMP_KEEP_ALL_ENTRIES=1 instead of using --preserve or --competion 2012-05-06 18:40:19 -10:00
William Ting
788255030b Implements #110: use 'export AUTOJUMP_IGNORE_CASE=1' to make autojump case insensitive 2012-05-06 18:30:22 -10:00
William Ting
d7cea40619 implement basic fuzzy search 2012-05-06 18:10:06 -10:00
William Ting
f98b13641f increment path weights on a log scale 2012-05-06 15:54:27 -10:00
William Ting
900e3889e7 bump stored paths 2012-05-06 15:29:23 -10:00
William Ting
ad10e13c4a minor refactoring 2012-05-06 15:09:37 -10:00
William Ting
73d18eecf2 minor reorganization 2012-05-06 14:34:03 -10:00
William Ting
a96d1bca9d minor reorganization tweaks 2012-05-06 14:05:47 -10:00
William Ting
7343ef1825 move match last pattern into separate funciton and disabled 2012-05-06 13:51:18 -10:00
William Ting
31001c9456 Move argument parsing into function, fix database class items, add preserve option 2012-05-06 13:43:16 -10:00
William Ting
46b8d84c7e Move database logic into database object 2012-05-06 13:12:39 -10:00
William Ting
da3d660b50 Remove license from individual files, consolidate information into AUTHORS and LICENSE 2012-05-06 12:56:01 -10:00
William Ting
acfc5c13ef restructure files, working make doc and make release 2012-04-17 13:09:39 -10:00