1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
Commit Graph

18 Commits

Author SHA1 Message Date
William Ting
35bc63c66e Fix encoding issues.
The original implementation used str.encode() on input and str.decode() on
output. However this would cause UnicodeDecodeError since certain characters
can't be encoded / decoded in ASCII.

The new solution is to use unicode() on all input strings and output UTF-8
encoded strings. This makes the assumption that the shell can handle UTF-8
strings.
2014-01-08 11:05:25 -06:00
William Ting
b3162c917b add helper functions unit tests 2013-12-31 18:47:08 -06:00
William Ting
fb1f397fee add string unit tests 2013-12-31 16:49:41 -06:00
William Ting
a8057ed1db linter cleanup 2013-12-28 11:34:13 -06:00
William Ting
80a3f0da4d remove unused imports, minor formatting cleanup 2013-12-28 08:03:27 -06:00
Wieland Hoffmann
d1fe6fead9 Remove tests from Makefile 2013-11-24 23:51:37 +01:00
William Ting
02a47db68d Consolidate version numbers.
Instead of keeping the version number in two separate places, the Makefile will
now grep bin/autojump for the proper version number.
2012-11-21 23:44:12 -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
885c4e68ce minor Makefile edit 2012-10-30 22:30:45 -05:00
William Ting
b3c3253e89 tweak release target to build docs and test first 2012-05-28 09:18:28 -10:00
William Ting
e62e720765 move config back to global space 2012-05-12 17:00:38 -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
9ee7906472 fix documentation formatting 2012-04-17 20:41:20 -10:00
William Ting
f91c7e3954 split up doc building for manpage and readme.md 2012-04-17 14:26:54 -10:00
William Ting
168865f138 fix install.sh to reflect new locations, tweak documentation where necessary 2012-04-17 13:40:53 -10:00
William Ting
acfc5c13ef restructure files, working make doc and make release 2012-04-17 13:09:39 -10:00