Skip to content

Commit

Permalink
Update README and make it clear that windows is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
joowani committed Jun 5, 2017
1 parent 3f0bf9d commit 6fce09d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
15 changes: 7 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ Features

**dtags** is a lightweight command line tool which lets you:

- Tag and un-tag directories
- Run commands in multiple directories in parallel
- Change directories quickly via tag names
- Use shell variables to reference directories
- Tag directories and jump between them quickly by tag names
- Run commands inside tagged directories in parallel
- Easily manage git repositories, vagrant machines etc.


Expand All @@ -34,16 +32,17 @@ Installation

Check requirements:

- Python 2.7+ or 3.4+
- Python 2.7.x, 3.4.x, 3.5.x or 3.6.x
- Supported operating systems: Linux, OS X, Ubuntu on Windows
- Recent version of `pip <https://pip.pypa.io>`__
- Recent version of Bash, Zsh or Fish with tab-completion enabled

Install the package:

.. code:: bash
# You may need to sudo depending on your setup
~$ pip install --upgrade dtags
# You may need to sudo depending on your environment setup
~$ pip install dtags
Add the following line at the end of your shell runtime configuration and reload the shell:

Expand Down Expand Up @@ -167,7 +166,7 @@ Control multiple vagrant machines at the same time:
Technical Notes
===============

- **dtags** is currently not supported on Windows
- **dtags** is currently *not* supported on Windows (only Ubuntu on Windows)
- The directory-to-tags mapping is stored in ``~/.dtags/mapping``
- Tags are also stored on their own in ``~/.dtags/tags`` for tab-completion
- ``p`` cannot execute interactive commands that wait on input
Expand Down
2 changes: 1 addition & 1 deletion dtags/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.2.1'
VERSION = '3.2.2'
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
For fish, place in ~/.config/fish/config.fish:
command -v dtags-activate > /dev/null 2>&1; and dtags-activate fish | source
And then restart your shell.""".format(version=version['VERSION'])
And then restart your shell.
Note: dtags is NOT supported on windows""".format(version=version['VERSION'])


class DTagsInstall(install):
Expand Down

0 comments on commit 6fce09d

Please sign in to comment.