xontrib-output-search

Get identifiers, paths, URLs and words from the previous command output and use them for the next command in xonsh shell.

BSD-2-CLAUSE License

Downloads
451
Stars
39
Committers
5
xontrib-output-search - 0.6.5 Latest Release

Published by anki-code 8 months ago

Added $XONTRIB_OUTPUT_SEARCH_WARNING to have an ability to hide warnings from xontrib.

xontrib-output-search - 0.6.4

Published by anki-code over 1 year ago

Fix notification about capturing.

xontrib-output-search - 0.6.3

Published by anki-code over 1 year ago

README improvements.

xontrib-output-search - 0.6.2

Published by anki-code over 2 years ago

Maintenance release.

xontrib-output-search - 0.6.1

Published by anki-code over 2 years ago

Maintenance release.

xontrib-output-search - 0.6.0

Published by anki-code over 2 years ago

Support Control + F on Mac by default.

xontrib-output-search - 0.5.5

Published by anki-code almost 3 years ago

Added tmux fallback in case output of last cmd is not available. Thanks @dev2718!

xontrib-output-search - 0.5.4

Published by anki-code almost 4 years ago

Added XONTRIB_OUTPUT_SEARCH_KEY_BINDING env var to set custom key binding.

xontrib-output-search - 0.5.3

Published by anki-code about 4 years ago

Fixed Event handlers need a **kwargs for future proofing.

xontrib-output-search - 0.5.2

Published by anki-code about 4 years ago

Package maintenance

xontrib-output-search - 0.5.1

Published by anki-code over 4 years ago

Transfer to tokenizer/xontrib-output-search

xontrib-output-search - 0.5.0

Published by anki-code over 4 years ago

Switched to upstream tokenize-output library

xontrib-output-search - 0.4.1

Published by anki-code over 4 years ago

Default key combination is Alt+F. If you use this key combination for another function and your muscle memory is strong just change the key before loading the xontrib:

$XONTRIB_OUTPUT_SEARCH_KEY='i'
xontrib load output_search
xontrib-output-search - 0.4.0

Published by anki-code over 4 years ago

JavaScript object support.

Output:

{Hello: 'hello world', test:null}

Tokens:

['Hello', 'hello', 'hello world', 'test', 'world']
xontrib-output-search - 0.3.4

Published by anki-code over 4 years ago

Skip tokens with repeated characters.

Example:

+-------+-------+
| one   | two   |
| ----- | ----- |
| three | 12345 |
+-------+-------+

Return: ['12345', 'one', 'three', 'two']

xontrib-output-search - 0.3.3

Published by anki-code over 4 years ago

Cleaning, packaging, tests, debug mode

xontrib-output-search - 0.3.2

Published by anki-code over 4 years ago

Fix one token output

xontrib-output-search - 0.3.1

Published by anki-code over 4 years ago

Fix f__ support

xontrib-output-search - 0.3.0

Published by anki-code over 4 years ago

Support autocomplete for prefix with special chars:

$ echo "Try https://github.com/anki-code/xontrib-output-search"
Try https://github.com/anki-code/xontrib-output-search
$ pip install git+xo<Alt+F>
$ pip install git+https://github.com/anki-code/xontrib-output-search
$ echo "The id is 424242"
The id is 424242
$ curl https://test.com/id=4<Alt+F>
$ curl https://test.com/id=424242
xontrib-output-search - 0.2.1

Published by anki-code over 4 years ago

Fixed tokens for empty results