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

117 Commits

Author SHA1 Message Date
William Ting
3125c65378 add fuzzy matching 2013-12-17 15:57:36 -06:00
William Ting
551b2f3853 make a bunch of functions pure 2013-12-17 14:48:12 -06:00
William Ting
6ea43c4267 minor reorganization 2013-12-17 13:52:34 -06:00
William Ting
39e5b0b4cc minor cleanup 2013-12-17 13:24:16 -06:00
William Ting
d115075295 remove current directory from matches 2013-12-17 12:20:18 -06:00
William Ting
1472b417c3 clarify detect_smartcase docstring 2013-12-17 12:04:11 -06:00
William Ting
b695cc3f7d minor cleanup 2013-12-17 12:03:57 -06:00
William Ting
067f653b50 match consecutive needles to paths 2013-12-17 11:54:40 -06:00
William Ting
30d1b6d6f2 implement ignore_case for match_end() 2013-12-17 11:11:27 -06:00
William Ting
c2189efb7b handle no results situation 2013-12-17 11:04:44 -06:00
William Ting
1a2a5a86f6 move existence of directories checking to end 2013-12-17 11:01:18 -06:00
William Ting
e51f595018 match end for single arguments finished 2013-12-17 10:55:56 -06:00
William Ting
d9b205c935 implement smartcase detection 2013-12-17 10:35:43 -06:00
William Ting
bb04405cd6 add unicode and ignore case regex flags 2013-12-17 10:07:39 -06:00
William Ting
bd091b8766 add no os.path.realpath() comment 2013-12-17 09:52:41 -06:00
William Ting
f84dffb7c7 add regex exact match 2013-12-17 09:52:30 -06:00
William Ting
fdeedb4f70 add multiple argument exact match support 2013-12-17 09:35:14 -06:00
William Ting
4c432fc5f1 overwrite old autojump 2013-12-16 20:28:54 -06:00
William Ting
b4dcdffa9c rename argparse library 2013-12-15 13:13:49 -06:00
William Ting
0b25bef134 Creates data directory before attempting to save the database.
Fixes #218.
2013-09-26 15:40:34 -05:00
William Ting
195312acad update docs, copyright year 2013-07-06 21:17:54 -05:00
William Ting
72b8c0a660 minor refactor 2013-07-06 20:23:34 -05:00
William Ting
e22a346b56 update install.sh to source shell specific file 2013-06-04 08:00:39 -05:00
William Ting
d89c25a4fc stop adding home directory to database 2013-05-21 08:36:44 -07:00
William Ting
590909bafc reorder imports so vendorized argparse works correctly 2013-05-21 07:28:39 -07:00
William Ting
286c099848 minor formatting changes 2013-05-14 23:00:22 -05:00
William Ting
a489a8de70 fix tab completion 2013-05-14 22:53:07 -05:00
William Ting
3b8231c0b2 fix output_quotes() calls 2013-05-14 22:00:44 -05:00
William Ting
400cd62613 simplify tab completion 2013-05-14 21:58:43 -05:00
William Ting
78e0bb2880 explicit imports for NamedTemporaryFile 2013-05-14 21:58:23 -05:00
William Ting
57de0881da move max_matches logic into parse_args() 2013-05-14 21:58:00 -05:00
William Ting
2fcaefb017 refactor output(), add output_quotes() 2013-05-14 21:56:15 -05:00
William Ting
ac538503e1 minor formatting changes 2013-05-14 20:58:24 -05:00
William Ting
dd7a0fbbc7 add weights decay back 2013-05-14 20:22:44 -05:00
William Ting
776f109b3a remove maintenance based on weights, remove AUTOJUMP_KEEP_ALL_ENTRIES 2013-05-14 19:43:43 -05:00
William Ting
2b6cfe7cdf remove zsh tab completion redundant code 2013-05-14 19:11:16 -05:00
William Ting
e21292e573 update documentation 2013-05-14 19:07:55 -05:00
William Ting
96a2206931 separate --increase from --add, print out directory weights, don't add home directory to database 2013-05-14 19:03:08 -05:00
William Ting
fcd7465ed8 switch away from global variables 2013-05-14 18:30:00 -05:00
William Ting
3b89c13cd2 fix stats 2013-05-14 17:46:28 -05:00
William Ting
2582ad6421 Refactor away from global variables, use defaultdict/iteration instead. 2013-05-14 17:34:19 -05:00
William Ting
f5ff5a126f Update changelog, version butmp to v21.5.9.
Related: #206
2013-05-14 10:16:36 -05:00
William Ting
de98e83b25 fix error log location 2013-04-29 12:53:36 -05:00
William Ting
c763b2afad better fix for custom installation directories 2013-04-24 19:05:56 -05:00
William Ting
ad09ee27d4 Fix security bug that allows running arbitrary user code.
https://bugzilla.redhat.com/show_bug.cgi?id=950777
2013-04-24 15:34:53 -05:00
William Ting
d3c1765255 minor fix 2013-04-19 09:49:53 -05:00
William Ting
81400f02a3 version bump to v21.5.4 2013-04-18 16:44:58 -05:00
Rogério Brito
2a49b8ca47 Use non-lazy enumeration for removal of dictionary keys.
In the current situation, iterating over `self.data.keys()` is OK only when
the dictionary is not modified, as `self.data.keys()` is lazily generated,
at least in Python 3.

Unfortunately, as we intend to change the dictionary with the `--purge`
option, we get a runtime exception when iterating the loop.

This commit fixes it by making the generation of the list of keys occur only
once, so that the dictionary itself can be modified in the body of the loop.

Tested with both Python 2.7 and Python 3.3.

Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
2013-04-14 12:58:26 -03:00
Ahmed Aeon Axan
f7e98ea498 fixed typo
The previous code was most probably a typo if i think.
2013-04-14 00:57:59 +05:30
Sven Taute
4685d86a17 normalize path ending before adding to the DB 2013-03-11 20:38:23 +01:00